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 /generic/tkWindow.c | |
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 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 7fa867f..d1238ac 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWindow.c,v 1.17 2000/04/28 00:46:04 ericm Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.18 2000/05/29 01:43:14 hobbs Exp $ */ #include "tkPort.h" @@ -145,6 +145,7 @@ static TkCmd commands[] = { {"radiobutton", NULL, Tk_RadiobuttonObjCmd, 1, 0}, {"scale", NULL, Tk_ScaleObjCmd, 1, 0}, {"scrollbar", Tk_ScrollbarCmd, NULL, 1, 1}, + {"spinbox", NULL, Tk_SpinboxObjCmd, 1, 0}, {"text", Tk_TextCmd, NULL, 1, 1}, {"toplevel", NULL, Tk_ToplevelObjCmd, 0, 1}, |