diff options
author | mdejong <mdejong@noemail.net> | 2001-12-04 03:07:42 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-12-04 03:07:42 (GMT) |
commit | 6dc5f26eb00efb1374564753525774e7a8785833 (patch) | |
tree | c10f74bc4d524b0bf65af204010f7cce724b7c23 /generic/tkInt.decls | |
parent | eac622e63ed80d05e3f3f8595f586d13a7529a1f (diff) | |
download | tk-6dc5f26eb00efb1374564753525774e7a8785833.zip tk-6dc5f26eb00efb1374564753525774e7a8785833.tar.gz tk-6dc5f26eb00efb1374564753525774e7a8785833.tar.bz2 |
Add TK patch 481148 to implement TIP 74, the
wm stackorder command.
* doc/winfo.n: Update documentation for the winfo
children command to indicate that top-level windows
are not returned in stacking order.
* doc/wm.n: Add documentation for wm stackorder.
* generic/tkInt.decls (TkWmStackorderToplevel):
Add decl for new function.
* generic/tkIntDecls.h: Regen.
* generic/tkStubInit.c: Regen.
* tests/unixWm.test: Add stackorder command to test
for wm command usage message.
* tests/wm.test: Add new set of tests for generic
window manager methods.
* unix/tkUnixWm.c (Tk_WmCmd,
TkWmStackorderToplevelWrapperMap,
TkWmStackorderToplevel): Add unix implementation of
new wm stackorder command.
* win/tkWinWm.c (Tk_WmCmd,
TkWmStackorderToplevelEnumProc,
TkWmStackorderToplevelWrapperMap,
TkWmStackorderToplevel): Add windows implementation
of new wm stackorder command.
FossilOrigin-Name: 45e73f13a603eba5167ba98b8dbe8ecbbab7a443
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index 13383a9..4a0593e 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.decls @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tkInt.decls,v 1.22 2001/11/23 02:04:56 das Exp $ +# RCS: @(#) $Id: tkInt.decls,v 1.23 2001/12/04 03:07:43 mdejong Exp $ library tk @@ -640,6 +640,10 @@ declare 140 generic { TkRegion TkPhotoGetValidRegion (Tk_PhotoHandle handle) } +declare 141 generic { + TkWindow ** TkWmStackorderToplevel(TkWindow *parentPtr) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |