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