1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/lib/tk.rb: better operation for SIGINT when processing callbacks.

* ext/tk/lib/tk/msgcat.rb: ditto.
* ext/tk/lib/tk/variable.rb: ditto.
* ext/tk/lib/tk/timer.rb: ditto.
* ext/tk/lib/tk/validation.rb: add Tk::ValidateConfigure.__def_validcmd()
  to define validatecommand methods easier


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2004-07-09 19:29:29 +00:00
parent 29c3cb6d20
commit e55330c9c4
45 changed files with 1162 additions and 20 deletions

View file

@ -5,6 +5,7 @@
# a standard spinbox (<= 8.3)
# This is the same as the 8.4 core spinbox widget.
#
require 'tk'
if (Tk::TK_MAJOR_VERSION < 8 ||
(Tk::TK_MAJOR_VERSION == 8 && Tk::TK_MINOR_VERSION < 4))
@ -14,4 +15,8 @@ if (Tk::TK_MAJOR_VERSION < 8 ||
Tk.tk_call('namespace', 'import', '::vu::spinbox')
end
Tk::Vu::Spinbox = TkSpinbox
module Tk
module Vu
Spinbox = TkSpinbox
end
end