Sha256: 91ea9be4173cc76bd8af47f95040a614f6805ca66995a6028fb0885019ace248

Contents?: true

Size: 855 Bytes

Versions: 6

Compression:

Stored size: 855 Bytes

Contents

# -*- coding: utf-8 -*-


%w[xot rays reflex]
  .map  {|s| File.expand_path "../../#{s}/lib", __dir__}
  .each {|s| $:.unshift s if !$:.include?(s) && File.directory?(s)}

require 'reflex'


class HelloWindow < Reflex::Window

  def initialize ()
    super title: "Hello Reflex!", frame: [100, 100, 320, 240]
    p = painter
    p.font Reflex::Font.new "Menlo", 32
    p.background 0
    p.fill 1
  end

  def on_draw (e)
    p = e.painter
    draw_grid p
    p.text "hello world!", 5, 5
  end

  def on_update (e)
    painter.background = rand, rand, rand
    redraw
  end

  def draw_grid (painter)
    painter.push do |p|
      w, h = frame.size.to_a
      p.stroke 0.5, 0.4
      (0..w).step(5).each {|x| p.line x, 0, x, h}
      (0..h).step(5).each {|y| p.line 0, y, w, y}
    end
  end

end# HelloWindow


Reflex.start do
  HelloWindow.new.show
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
reflexion-0.1.35 samples/hello.rb
reflexion-0.1.34 samples/hello.rb
reflexion-0.1.33 samples/hello.rb
reflexion-0.1.32 samples/hello.rb
reflexion-0.1.31 samples/hello.rb
reflexion-0.1.30 samples/hello.rb