mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
068bc7e43a
* lib_do_one_event() : change default value of the argument * lib_do_one_event() : returns true/false * add TclTkLib::EventFlag::NONE ( == 0 ) * add set_no_event_wait() and get_no_event_wait() * modify MANUAL.euc and README.euc tk.rb : * change default value of TkCore.do_one_event argument * add TkCore.set_no_event_wait(wait) and TkCore.get_no_event_wait * add Tk.exit ( == destroy root widget ) tkafter.rb : * rename TkAfter => TkTimer ( TkAfter is an alias name now. ) * set_callback returns self * continue() raises an exception, if already running or no procedure. * skip() raises an exception, if not running. sample/tktimer2.rb * new sample for TkTimer class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
29 lines
787 B
Ruby
29 lines
787 B
Ruby
#!/usr/bin/env ruby
|
|
# This script is a re-implementation of tktimer.rb with TkTimer(TkAfter) class.
|
|
|
|
require "tk"
|
|
|
|
label = TkLabel.new(:relief=>:raised, :width=>10) \
|
|
.pack(:side=>:bottom, :fill=>:both)
|
|
|
|
tick = proc{|aobj|
|
|
cnt = aobj.return_value + 5
|
|
label.text format("%d.%02d", *(cnt.divmod(100)))
|
|
cnt
|
|
}
|
|
|
|
timer = TkTimer.new(50, -1, tick).start(0, proc{ label.text('0.00'); 0 })
|
|
|
|
TkButton.new(:text=>'Start') {
|
|
command proc{ timer.continue unless timer.running? }
|
|
pack(:side=>:left, :fill=>:both, :expand=>true)
|
|
}
|
|
TkButton.new(:text=>'Stop') {
|
|
command proc{ timer.stop if timer.running? }
|
|
pack('side'=>'right','fill'=>'both','expand'=>'yes')
|
|
}
|
|
|
|
ev_quit = TkVirtualEvent.new('Control-c', 'Control-q')
|
|
Tk.root.bind(ev_quit, proc{Tk.exit}).focus
|
|
|
|
Tk.mainloop
|