diff options
author | chengyemao <chengyemao> | 2004-12-19 18:14:26 (GMT) |
---|---|---|
committer | chengyemao <chengyemao> | 2004-12-19 18:14:26 (GMT) |
commit | 88b0719da010bfb547b954ddb13d9ae51ae2fe30 (patch) | |
tree | 4fca04bc2c06239008fa0ca1cd8b132c5e461202 /win/tkWinX.c | |
parent | 45826f4c8f2a31626cd5673c0466bb20985590c7 (diff) | |
download | tk-88b0719da010bfb547b954ddb13d9ae51ae2fe30.zip tk-88b0719da010bfb547b954ddb13d9ae51ae2fe30.tar.gz tk-88b0719da010bfb547b954ddb13d9ae51ae2fe30.tar.bz2 |
Bug fix and feature implementation of embedded/embedding Tk
Diffstat (limited to 'win/tkWinX.c')
-rw-r--r-- | win/tkWinX.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/tkWinX.c b/win/tkWinX.c index 784ff18..40abdf9 100644 --- a/win/tkWinX.c +++ b/win/tkWinX.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWinX.c,v 1.36 2004/12/17 14:17:56 chengyemao Exp $ + * RCS: @(#) $Id: tkWinX.c,v 1.37 2004/12/19 18:14:27 chengyemao Exp $ */ #include "tkWinInt.h" @@ -814,6 +814,12 @@ TkWinChildProc(hwnd, message, wParam, lParam) case TK_GEOMETRYREQ: case TK_ATTACHWINDOW: case TK_DETACHWINDOW: + case TK_ICONIFY: + case TK_DEICONIFY: + case TK_MOVEWINDOW: + case TK_WITHDRAW: + case TK_RAISEWINDOW: + case TK_TITLE: result = TkWinEmbeddedEventProc(hwnd, message, wParam, lParam); break; |