Sha256: 34a4b74f981681471a2d544b4720a646483320d77d0eb74685160a78acc47150
Contents?: true
Size: 799 Bytes
Versions: 12
Compression:
Stored size: 799 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' module Demo def Demo.run(frame, nb, log) cd = Wx::ColourData.new cd.set_choose_full(true) Wx.ColourDialog(frame, cd) do |dlg| if dlg.show_modal == Wx::ID_OK data = dlg.get_colour_data.get_colour log.write_text("You selected: (%d, %d, %d)" % [data.red, data.green, data.blue]) end end end def Demo.overview return "Welcome to the wxRuby ColourDialog demo" 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
12 entries across 12 versions & 1 rubygems