diff options
author | chengyemao <chengyemao> | 2004-12-20 01:13:12 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2004-12-20 01:13:12 (GMT) |
commit | a24199bd3446b589ea816cd70e58f5165f18724f (patch) | |
tree | 9083c856a5ab3bdcf23e28abc9a2c79372c13f3c /win/tkWinInt.h | |
parent | 88b0719da010bfb547b954ddb13d9ae51ae2fe30 (diff) | |
download | tk-a24199bd3446b589ea816cd70e58f5165f18724f.zip tk-a24199bd3446b589ea816cd70e58f5165f18724f.tar.gz tk-a24199bd3446b589ea816cd70e58f5165f18724f.tar.bz2 |
featrue implementation of Tk container and embedded including TK_MOVEWINDOW, TK_ICONIFY, TK_DEICONIFY, TK_WITHDRAW; replaced TK_TITLE with TK_GETFRAMEWID for setting container's title across process boundary; bug fix in wm overrideredirect for TK_EMBEDDED window
Diffstat (limited to 'win/tkWinInt.h')
-rw-r--r-- | win/tkWinInt.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/win/tkWinInt.h b/win/tkWinInt.h index dfb0f35..a8ac9bd 100644 --- a/win/tkWinInt.h +++ b/win/tkWinInt.h @@ -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: tkWinInt.h,v 1.19 2004/09/23 01:08:11 hobbs Exp $ + * RCS: @(#) $Id: tkWinInt.h,v 1.20 2004/12/20 01:13:12 chengyemao Exp $ */ #ifndef _TKWININT @@ -221,5 +221,14 @@ extern Tcl_Encoding TkWinGetUnicodeEncoding _ANSI_ARGS_((void)); #define TK_THEME_WIN_CLASSIC 1 #define TK_THEME_WIN_XP 2 +/* + * The following is implemented in tkWinWm and used by tkWinEmbed.c + */ +void TkpWinToplevelWithDraw _ANSI_ARGS_((TkWindow *winPtr)); +void TkpWinToplevelIconify _ANSI_ARGS_((TkWindow *winPtr)); +void TkpWinToplevelDeiconify _ANSI_ARGS_((TkWindow *winPtr)); +long TkpWinToplevelIsControlledByWm _ANSI_ARGS_((TkWindow *winPtr)); +long TkpWinToplevelMove _ANSI_ARGS_((TkWindow *winPtr, int x, int y)); + #endif /* _TKWININT */ |