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
wxruby-1.9.10-x86_64-linux samples/bigdemo/ColorPanel.rbw
wxruby-1.9.10-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.6-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.6-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-1.9.7-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.7-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-1.9.8-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.8-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-1.9.8-x86_64-linux samples/bigdemo/ColorPanel.rbw
wxruby-1.9.9-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.9-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-2.0.0-universal-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-2.0.0-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-2.0.0-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-2.0.0-x86_64-linux samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-1.9.10-x86-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-1.9.10-x86-linux samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-1.9.10-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-2.0.0-x86-darwin-9 samples/bigdemo/ColorPanel.rbw
wxruby-ruby19-2.0.0-x86-linux samples/bigdemo/ColorPanel.rbw