summaryrefslogtreecommitdiffstats
path: root/win/tkWin.h
diff options
context:
space:
mode:
authorchengyemao <chengyemao@noemail.net>2004-12-18 20:21:09 (GMT)
committerchengyemao <chengyemao@noemail.net>2004-12-18 20:21:09 (GMT)
commitefc9df4c6241354b05bf7f09e78c8a196572d3a8 (patch)
tree8bb2e83ba433423c44818cd6c36449538a2d420a /win/tkWin.h
parent404c9fe48e9ee88e666117b2a33e5df5cdf26f46 (diff)
downloadtk-efc9df4c6241354b05bf7f09e78c8a196572d3a8.zip
tk-efc9df4c6241354b05bf7f09e78c8a196572d3a8.tar.gz
tk-efc9df4c6241354b05bf7f09e78c8a196572d3a8.tar.bz2
Added comments to embedded Window message definition
FossilOrigin-Name: 904c2f157abb9a698904b5ad1b4a644b80e52d9d
Diffstat (limited to 'win/tkWin.h')
-rw-r--r--win/tkWin.h12
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 */
/*