Sha256: 4fcdab3ea15bd838c86a37101849e15c3a4f4fd01a5ccab39fef924edfb95f8c
Contents?: true
Size: 698 Bytes
Versions: 12
Compression:
Stored size: 698 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) dlg = Wx::DirDialog.new(frame, "Choose a directory:") if dlg.show_modal() == Wx::ID_OK log.write_text("You selected: " + dlg.get_path()) end end def Demo.overview return "Welcome to the wxRuby DirDialog 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 & 2 rubygems