Sha256: 75176538cdbed9affb5472382323ac116747cbe7a50100f3e447e9654891b97a

Contents?: true

Size: 568 Bytes

Versions: 26

Compression:

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

26 entries across 26 versions & 3 rubygems

Version Path
wxruby3-0.9.2-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.1-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.3-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.2-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.11-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.10-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.9-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.8-x64-mingw-ucrt samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2 samples/bigdemo/ColorPanel.rbw
wxruby3-0.9.0.pre.beta.1-x64-mingw-ucrt-3.2 samples/bigdemo/ColorPanel.rbw
wxruby64-2.0.1-x64-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.7-i386-mswin32 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.10-x86-mswin32-60 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.6-x86-mingw32 samples/bigdemo/ColorPanel.rbw
wxruby-1.9.6-x86-mswin32-60 samples/bigdemo/ColorPanel.rbw