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