mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
* ext/tk/lib/tcltklib : bug fix
* ext/tk/lib/tk : bug fix and add Tcl/Tk extension support libraries git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ad0add9f08
commit
b7a7c70c32
32 changed files with 2317 additions and 677 deletions
|
@ -63,6 +63,8 @@ autoload :TkImage, 'tk/image'
|
|||
autoload :TkBitmapImage, 'tk/image'
|
||||
autoload :TkPhotoImage, 'tk/image'
|
||||
|
||||
autoload :TkItemConfigMethod, 'tk/itemconfig'
|
||||
|
||||
autoload :TkTreatItemFont, 'tk/itemfont'
|
||||
|
||||
autoload :TkKinput, 'tk/kinput'
|
||||
|
@ -150,6 +152,7 @@ autoload :TkToplevel, 'tk/toplevel'
|
|||
autoload :TkTextWin, 'tk/txtwin_abst'
|
||||
|
||||
autoload :TkValidation, 'tk/validation'
|
||||
|
||||
autoload :TkVariable, 'tk/variable'
|
||||
autoload :TkVarAccess, 'tk/variable'
|
||||
|
||||
|
@ -167,9 +170,13 @@ autoload :TkXIM, 'tk/xim'
|
|||
# sub-module of Tk
|
||||
module Tk
|
||||
autoload :Clock, 'tk/clock'
|
||||
autoload :OptionObj, 'tk/optionobj'
|
||||
autoload :Scrollable, 'tk/scrollable'
|
||||
autoload :Wm, 'tk/wm'
|
||||
|
||||
autoload :ValidateConfigure, 'tk/validation'
|
||||
autoload :ItemValidateConfigure, 'tk/validation'
|
||||
|
||||
autoload :EncodedString, 'tk/encodedstr'
|
||||
def Tk.EncodedString(str, enc = nil); Tk::EncodedString.new(str, enc); end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue