diff options
author | chengyemao <chengyemao> | 2004-12-18 20:21:09 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2004-12-18 20:21:09 (GMT) |
commit | e0487637c65e27e840c3d34213c702f44c072a7a (patch) | |
tree | 8bb2e83ba433423c44818cd6c36449538a2d420a /win/tkWin.h | |
parent | 13dd2dd5e9cc7cb93e9d4a62c2b5c2b291506c2a (diff) | |
download | tk-e0487637c65e27e840c3d34213c702f44c072a7a.zip tk-e0487637c65e27e840c3d34213c702f44c072a7a.tar.gz tk-e0487637c65e27e840c3d34213c702f44c072a7a.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 */ /* |