Sha256: bcec127693c1b2aace76821160f69fe56948c7e7cb292a10071c87ac6c73b2ab

Contents?: true

Size: 1.07 KB

Versions: 12

Compression:

Stored size: 1.07 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 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

12 entries across 12 versions & 2 rubygems

Version Path
wxruby64-2.0.1-x64-mingw32 samples/bigdemo/wxSlider.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-1.9.7-i386-mswin32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.10-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-1.9.6-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-1.9.6-x86-mingw32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.7-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-1.9.8-x86-mingw32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.8-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-1.9.9-x86-mingw32 samples/bigdemo/wxSlider.rbw
wxruby-1.9.9-x86-mswin32-60 samples/bigdemo/wxSlider.rbw
wxruby-2.0.0-x86-mswin32-60 samples/bigdemo/wxSlider.rbw