Sha256: b286b0fa1d7d4133ebd6614c5ec1e674d97b70ad6d4a4ca72b3dc5f7018db4a1

Contents?: true

Size: 1.12 KB

Versions: 12

Compression:

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



module Demo
    def Demo.run(frame, nb, log)
        max = 20
        dlg = Wx::ProgressDialog.new("Progress dialog example", "An informative message", max, frame, 
                                        Wx::PD_CAN_ABORT | Wx::PD_APP_MODAL)
                                        
        keepGoing = true
        count = 0
        while keepGoing and count < max
            count += 1
            sleep(1)
            
            if count == max / 2
                keepGoing = dlg.update(count, "Half-time!")
            else
                keepGoing = dlg.update(count)
            end
        end
        dlg.destroy()
        return nil
    end
    
    def Demo.overview
        return "A dialog that shows the progress of an operation"
    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/wxProgressDialog.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.7-i386-mswin32 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.10-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.6-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.6-x86-mingw32 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.7-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.8-x86-mingw32 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.8-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.9-x86-mingw32 samples/bigdemo/wxProgressDialog.rbw
wxruby-1.9.9-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw
wxruby-2.0.0-x86-mswin32-60 samples/bigdemo/wxProgressDialog.rbw