Sha256: 0e9ccc0472a3f22c45c5d68b0f7c254338869457e9c32e0b4fccf7b831847b38

Contents?: true

Size: 1009 Bytes

Versions: 20

Compression:

Stored size: 1009 Bytes

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 is a Wx::Slider", Wx::Point.new(45,15))
        
        slider = Wx::Slider.new(self, 100, 25, 1, 100, Wx::Point.new(30,60), Wx::Size.new(250,-1),
                                    Wx::SL_HORIZONTAL | Wx::SL_AUTOTICKS | Wx::SL_LABELS)
        slider.set_tick_freq(5,1)
    end
end

module Demo
    def Demo.run(frame,nb,log)
        win = TestPanel.new(nb, log)
        return win
    end
    
    def Demo.overview
        "A slider is a control with a handle which can be pulled back and forth to change the value."
    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

20 entries across 20 versions & 1 rubygems

Version Path
wxruby-1.9.3-i386-mswin32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.2-powerpc-darwin8.10.0 samples/bigdemo/wxSlider.rbw
wxruby-1.9.2-i686-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.2-i686-darwin8.8.2 samples/bigdemo/wxSlider.rbw
wxruby-1.9.1-powerpc-darwin8.3.0 samples/bigdemo/wxSlider.rbw
wxruby-1.9.1-i686-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.1-i686-darwin8.4.1 samples/bigdemo/wxSlider.rbw
wxruby-1.9.0-powerpc-darwin8.10.0 samples/bigdemo/wxSlider.rbw
wxruby-1.9.0-i686-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.0-i686-darwin8.4.1 samples/bigdemo/wxSlider.rbw
wxruby-1.9.0-i386-mswin32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.1-x86_64-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.2-x86_64-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.3-universal-darwin samples/bigdemo/wxSlider.rbw
wxruby-1.9.3-x86-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.4-x86_64-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.4-x86-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.5-universal-darwin-9 samples/bigdemo/wxSlider.rbw
wxruby-1.9.5-x86-linux samples/bigdemo/wxSlider.rbw
wxruby-1.9.5-x86_64-linux samples/bigdemo/wxSlider.rbw