Sha256: 3d36564193d60235d2499256ba36fa07a1681ca6adea605976557502b51fced1

Contents?: true

Size: 799 Bytes

Versions: 30

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)
        dlg = Wx::TextEntryDialog.new(frame, "What is your favorite programming language?", "Duh??", "Ruby")
        dlg.set_value("Ruby is the best!")
        if dlg.show_modal() == Wx::ID_OK
            log.write_text("You entered: " + dlg.get_value().to_s + "\n")
        end     
        return nil
    end
    
    def Demo.overview
        return "This dialog allows the user to input text"
    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

30 entries across 30 versions & 2 rubygems

Version Path
wxruby-ruby19-2.0.1-x86-mingw32 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-ruby19-2.0.1-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-ruby19-2.0.1-x86-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-2.0.1-x86-mingw32 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-2.0.1-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-2.0.1-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.10-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.10-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.10-x86-mingw32 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.10-x86_64-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.6-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.6-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.7-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.7-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.8-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.8-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.8-x86_64-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.9-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw
wxruby-1.9.9-x86-linux samples/bigdemo/wxTextEntryDialog.rbw
wxruby-2.0.0-universal-darwin-9 samples/bigdemo/wxTextEntryDialog.rbw