Sha256: 93de1f054652a104beec8baf0adb2bb816b721bac8bc3eff429c714a99f15961

Contents?: true

Size: 499 Bytes

Versions: 20

Compression:

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

20 entries across 20 versions & 1 rubygems

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