Sha256: a7bb3e957300a34ff985039d167e8b14e82f7b664f01b3838f9b774c6b33bc08
Contents?: true
Size: 1.06 KB
Versions: 12
Compression:
Stored size: 1.06 KB
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) dlg = Wx::SingleChoiceDialog.new(frame, "Test Single Choice", "The Caption", %w(zero one two three four five six seven eight)) #Wx::CHOICEDLG_STYLE) if dlg.show_modal() == Wx::ID_OK log.write_text("You selected: " + dlg.get_string_selection() + "\n") end dlg.destroy() return nil end def Demo.overview return "This class represents a dialog that shows a list of strings, and allows the user to select one. Double-clicking on a list item is equivalent to single-clicking and then pressing OK." 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 & 2 rubygems