Sha256: 3661b033d5031c3c4ab07c9e2e3555faa16a00b0f41e198f43729a7f71ce622e

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

#!/usr/bin/env ruby

begin
  require 'wx'
rescue LoadError => no_wx_err
  begin
    require 'rubygems'
    require 'wx'
  rescue LoadError
    raise no_wx_err
  end
end

class TestPanel < Wx::Panel
  def initialize(parent, log)
    super(parent, -1)
    @log = log
    @count = 0
    
    Wx::StaticText.new(self, -1, 
                        "This example uses the Wx::SpinCtrl control.", 
                        Wx::Point.new(45,15))
    
    sc = Wx::SpinCtrl.new(self, -1, "", 
                           Wx::Point.new(30, 50), Wx::Size.new(80, -1))
    sc.set_range(1,100)
    sc.set_value(5)
    evt_spinctrl(sc.get_id) { | e | on_spinctrl(e) }
    # sc.enable(false)
  end
  
  def on_spinctrl(evt)
    @log.write_text("spintctrl - new position #{evt.get_position}")
  end
end

module Demo
  def Demo.run(frame,nb,log)
    win = TestPanel.new(nb, log)
    return win
  end
  
  def Demo.overview
    "Wx::SpinCtrl combines Wx::TextCtrl and Wx::SpinButton in one control."
  end
end


if __FILE__ == $0
  run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
  load run_solo_lib
  run File.basename($0)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wxruby-1.9.5-i386-mswin32 samples/bigdemo/wxSpinCtrl.rbw
wxruby-1.9.4-i386-mswin32 samples/bigdemo/wxSpinCtrl.rbw
wxruby-1.9.2-i386-mswin32 samples/bigdemo/wxSpinCtrl.rbw
wxruby-1.9.1-i386-mswin32 samples/bigdemo/wxSpinCtrl.rbw