Sha256: 0914e905b722f2cbd5271d1dec42919edb150be6f9403c3b67da7716d8e4afb2

Contents?: true

Size: 1.14 KB

Versions: 42

Compression:

Stored size: 1.14 KB

Contents

#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
begin
  require 'rubygems' 
rescue LoadError
end
require 'wx'



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

42 entries across 42 versions & 3 rubygems

Version Path
wxruby3-0.9.2 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.1 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.rc.3 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.rc.2 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.rc.1 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.14 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.13 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.11 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.10 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.9 samples/bigdemo/wxSpinCtrl.rbw
wxruby3-0.9.0.pre.beta.8 samples/bigdemo/wxSpinCtrl.rbw
wxruby-ruby19-2.0.1-x86-mingw32 samples/bigdemo/wxSpinCtrl.rbw
wxruby-ruby19-2.0.1-x86-linux samples/bigdemo/wxSpinCtrl.rbw
wxruby-ruby19-2.0.1-x86-darwin-9 samples/bigdemo/wxSpinCtrl.rbw
wxruby-2.0.1-x86-mingw32 samples/bigdemo/wxSpinCtrl.rbw
wxruby-2.0.1-x86-linux samples/bigdemo/wxSpinCtrl.rbw
wxruby-2.0.1-universal-darwin-9 samples/bigdemo/wxSpinCtrl.rbw
wxruby-1.9.10-universal-darwin-9 samples/bigdemo/wxSpinCtrl.rbw
wxruby-1.9.10-x86-linux samples/bigdemo/wxSpinCtrl.rbw