diff options
author | ericm <ericm> | 2000-10-05 18:31:24 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-10-05 18:31:24 (GMT) |
commit | 250f34d4aa82b5c5d86b64b06f8d50e532e3ec38 (patch) | |
tree | 79fe531fc886831c0e17508f151e45a8bc1e1fed /generic/tk.decls | |
parent | 3c249a7000fb9bacdda68774c89048bccb81d87a (diff) | |
download | tk-250f34d4aa82b5c5d86b64b06f8d50e532e3ec38.zip tk-250f34d4aa82b5c5d86b64b06f8d50e532e3ec38.tar.gz tk-250f34d4aa82b5c5d86b64b06f8d50e532e3ec38.tar.bz2 |
* generic/tkCmds.c (Tk_WinfoObjCmd): Added check for
TK_ANONYMOUS_WINDOW flag in the [winfo children] subcommand; if
set, the window will not be printed in the list of children.
* doc/CrtWindow.3: Added entry for Tk_CreateAnonymousWindow.
* generic/tkWindow.c
(Tk_CreateAnonymousWindow): New API for creating anonymous
windows. These windows are manipulable from C, but not from Tcl,
because they have no pathname associated with them. They are used
initially by widgets that do rubber-band resizing (panedwindow,
multi-column listbox, etc.), and may be useful for other widgets
as well (dropbox, combobox).
(Tk_DestroyWindow): Added check for TK_ANONYMOUS_WINDOW flag when
determining whether to generate a DestroyNotify event.
* generic/tkStubInit.c:
* generic/tkDecls.h: Regen'd from tk.decls.
* generic/tk.decls: Added Tk_CreateAnonymousWindow declaration.
* generic/tk.h: Added TK_ANONYMOUS_WINDOW flag for Tk_Window's.
Diffstat (limited to 'generic/tk.decls')
-rw-r--r-- | generic/tk.decls | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tk.decls b/generic/tk.decls index 2843334..e33006f 100644 --- a/generic/tk.decls +++ b/generic/tk.decls @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tk.decls,v 1.11 2000/06/03 08:58:14 hobbs Exp $ +# RCS: @(#) $Id: tk.decls,v 1.12 2000/10/05 18:31:25 ericm Exp $ library tk @@ -1136,6 +1136,12 @@ declare 240 generic { void Tk_DeleteClientMessageHandler (Tk_ClientMessageProc *proc) } +declare 241 generic { + Tk_Window Tk_CreateAnonymousWindow (Tcl_Interp *interp, \ + Tk_Window parent, char *screenName) +} + + # Define the platform specific public Tk interface. These functions are # only available on the designated platform. |