diff options
author | chengyemao <chengyemao> | 2004-12-18 20:21:09 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2004-12-18 20:21:09 (GMT) |
commit | 70f3e8f1f5816b0d0b0f317a85895e06b5d1753c (patch) | |
tree | 8bb2e83ba433423c44818cd6c36449538a2d420a /win/tkWin.h | |
parent | 56bab09af60f7215cd9a48c0282f54ea917fab2d (diff) | |
download | tk-70f3e8f1f5816b0d0b0f317a85895e06b5d1753c.zip tk-70f3e8f1f5816b0d0b0f317a85895e06b5d1753c.tar.gz tk-70f3e8f1f5816b0d0b0f317a85895e06b5d1753c.tar.bz2 |
Added comments to embedded Window message definition
Diffstat (limited to 'win/tkWin.h')
-rw-r--r-- | win/tkWin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/tkWin.h b/win/tkWin.h index c9fc84c..6cad91c 100644 --- a/win/tkWin.h +++ b/win/tkWin.h @@ -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: tkWin.h,v 1.6 1999/04/16 01:51:48 stanton Exp $ + * RCS: @(#) $Id: tkWin.h,v 1.7 2004/12/18 20:21:09 chengyemao Exp $ */ #ifndef _TKWIN @@ -29,14 +29,14 @@ #endif /* - * The following messages are use to communicate between a Tk toplevel + * The following messages are used to communicate between a Tk toplevel * and its container window. */ -#define TK_CLAIMFOCUS (WM_USER) -#define TK_GEOMETRYREQ (WM_USER+1) -#define TK_ATTACHWINDOW (WM_USER+2) -#define TK_DETACHWINDOW (WM_USER+3) +#define TK_CLAIMFOCUS (WM_USER) /* an embedded window requests to focus */ +#define TK_GEOMETRYREQ (WM_USER+1) /* an embedded window requests to change size */ +#define TK_ATTACHWINDOW (WM_USER+2) /* an embedded window requests to attach */ +#define TK_DETACHWINDOW (WM_USER+3) /* an embedded window requests to detach */ /* |