Sha256: b614164b218e63cc24e8d35a33e33859f68e50603e5e63198f0f81fb6e7c14a2

Contents?: true

Size: 545 Bytes

Versions: 42

Compression:

Stored size: 545 Bytes

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 ColoredPanel < Wx::Window
    def initialize(parent, color)
        super(parent, -1, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE, Wx::SIMPLE_BORDER)
        set_background_colour(color)
    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/ColorPanel.rbw
wxruby3-0.9.1 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.3 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.2 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.1 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.14 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.13 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.11 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.10 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.9 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.8 samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-2.0.1-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-2.0.1-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-2.0.1-x86-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-2.0.1-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-2.0.1-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-2.0.1-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.10-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.10-x86-linux samples/bigdemo/ColorPanel.rbw