diff options
author | hobbs <hobbs> | 2000-05-29 01:43:13 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-05-29 01:43:13 (GMT) |
commit | abcf7507cc5ab608bb75d22bbb408ee6bc5f0b1a (patch) | |
tree | 8e72919b463211e30307b0e8eb87f7a28e578327 /library/tk.tcl | |
parent | f78e5fa2c3172a6d7f3ee6e4d77819d9c16b48d1 (diff) | |
download | tk-abcf7507cc5ab608bb75d22bbb408ee6bc5f0b1a.zip tk-abcf7507cc5ab608bb75d22bbb408ee6bc5f0b1a.tar.gz tk-abcf7507cc5ab608bb75d22bbb408ee6bc5f0b1a.tar.bz2 |
* doc/spinbox.n: (new file) docs for spinbox widget
* generic/tkInt.h: added Tk_SpinboxObjCmd declaration
* generic/tkEntry.c: added 'spinbox' widget - an extension of the
entry widget type.
* generic/tkWindow.c: added 'spinbox' to core Tk commands
* library/spinbox.tcl: (new file) binding and helper procs for spinbox
* library/tk.tcl: added spinbox.tcl to list of files to source
* tests/entry.test: updated changed error messages
* tests/spinbox.test: (new file) test suite for spinbox
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index cdf52ac..12ac1ba 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -3,7 +3,7 @@ # Initialization script normally executed in the interpreter for each # Tk-based application. Arranges class bindings for widgets. # -# RCS: @(#) $Id: tk.tcl,v 1.21 2000/05/03 00:18:36 hobbs Exp $ +# RCS: @(#) $Id: tk.tcl,v 1.22 2000/05/29 01:43:15 hobbs Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -313,6 +313,7 @@ if {[string compare $tcl_platform(platform) "macintosh"] && \ source [file join $tk_library menu.tcl] source [file join $tk_library scale.tcl] source [file join $tk_library scrlbar.tcl] + source [file join $tk_library spinbox.tcl] source [file join $tk_library text.tcl] } |