Sha256: 1123563f4631b93d97defd2f66f5ee621e649ca50d3894eb3a3520dfc3f409b0

Contents?: true

Size: 1.02 KB

Versions: 12

Compression:

Stored size: 1.02 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'



$wildcard = "Ruby Source (*.rb)|*.rb|RubyW Source (*.rbw)|*.rbw|All files (*.*)|*.*"

module Demo
    def Demo.run(frame, nb, log)
        log.write_text("CWD: " + Dir.getwd() + "\n")
        dlg = Wx::FileDialog.new(frame, "Choose a file", Dir.getwd(), "", $wildcard, Wx::OPEN | Wx::MULTIPLE)
        if dlg.show_modal() == Wx::ID_OK
            paths = dlg.get_paths()
            log.write_text("You selected %d files" % + paths.length)
            paths.each {|path| log.write_text("CWD: " +  path)}
        log.write_text("CWD: " + Dir.getwd())
        end
    end
    
    def Demo.overview
        return "Welcome to the wxFileDialog 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

Version Path
wxruby64-2.0.1-x64-mingw32 samples/bigdemo/wxFileDialog.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.7-i386-mswin32 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.10-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.6-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.6-x86-mingw32 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.7-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.8-x86-mingw32 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.8-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.9-x86-mingw32 samples/bigdemo/wxFileDialog.rbw
wxruby-1.9.9-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw
wxruby-2.0.0-x86-mswin32-60 samples/bigdemo/wxFileDialog.rbw