Sha256: 5ef2af86c084a88421f1171792a776c9836b4125c5333364d8274163f9acbec7

Contents?: true

Size: 820 Bytes

Versions: 14

Compression:

Stored size: 820 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)
    lst = %w(apple pear banana coconut orange etc etc.. etc...)
    choices = Wx::get_selected_choices("Pick some from\n this list\nblah blah...", "m.s.d.", lst)
    if choices
      log.write_text("You selected " + choices.length.to_s + " items:")
      choices.each_index { |i| log.write_text("\t" + choices[i].to_s + " => " + lst[choices[i]]) }
    end
  end

  def Demo.overview
    return ""
  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

14 entries across 14 versions & 1 rubygems

Version Path
wxruby3-0.9.2-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.1-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.rc.3-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.rc.2-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.rc.1-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.14-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.13-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.11-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.10-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.9-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.8-x64-mingw-ucrt samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.2-x64-mingw-ucrt-3.2-3.2.2 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby3-0.9.0.pre.beta.1-x64-mingw-ucrt-3.2 samples/bigdemo/wxMultipleChoiceDialog.rbw