Sha256: be10d8ff94afed298d464b931aea70059a1abdaf2871dee38e2dd1dbb24da7ef

Contents?: true

Size: 1011 Bytes

Versions: 20

Compression:

Stored size: 1011 Bytes

Contents

#!/usr/bin/env ruby

begin
  require 'wx'
rescue LoadError => no_wx_err
  begin
    require 'rubygems'
    require 'wx'
  rescue LoadError
    raise no_wx_err
  end
end

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

20 entries across 20 versions & 1 rubygems

Version Path
wxruby-1.9.3-i386-mswin32 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.2-powerpc-darwin8.10.0 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.2-i686-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.2-i686-darwin8.8.2 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.1-powerpc-darwin8.3.0 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.1-i686-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.1-i686-darwin8.4.1 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.0-powerpc-darwin8.10.0 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.0-i686-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.0-i686-darwin8.4.1 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.0-i386-mswin32 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.1-x86_64-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.2-x86_64-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.3-universal-darwin samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.3-x86-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.4-x86_64-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.4-x86-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.5-universal-darwin-9 samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.5-x86-linux samples/bigdemo/wxSingleChoiceDialog.rbw
wxruby-1.9.5-x86_64-linux samples/bigdemo/wxSingleChoiceDialog.rbw