/* * tkWin.h -- * * Declarations of public types and interfaces that are only * available under Windows. * * Copyright (c) 1996-1997 by Sun Microsystems, Inc. * * 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.9 2004/12/20 01:13:12 chengyemao Exp $ */ #ifndef _TKWIN #define _TKWIN #ifndef _TK #include #endif #define WIN32_LEAN_AND_MEAN #include #undef WIN32_LEAN_AND_MEAN #ifdef BUILD_tk # undef TCL_STORAGE_CLASS # define TCL_STORAGE_CLASS DLLEXPORT #endif /* * The following messages are used to communicate between a Tk toplevel * and its container window. A zero should be returned if a Tk container * is not able to provide a requested service. A Tk container may not be * able to provide service to all of the following requests at the moment. * But an embedded Tk window will send out these requests to support * external Tk container application. */ #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 */ #define TK_MOVEWINDOW (WM_USER+4) /* an embedded window requests to move */ #define TK_RAISEWINDOW (WM_USER+5) /* an embedded window requests to raise */ #define TK_ICONIFY (WM_USER+6) /* an embedded window requests to iconify */ #define TK_DEICONIFY (WM_USER+7) /* an embedded window requests to deiconify */ #define TK_WITHDRAW (WM_USER+8) /* an embedded window requests to withdraw */ #define TK_GETFRAMEWID (WM_USER+9) /* an embedded window requests a frame window id */ /* *-------------------------------------------------------------- * * Exported procedures defined for the Windows platform only. * *-------------------------------------------------------------- */ #include "tkPlatDecls.h" # undef TCL_STORAGE_CLASS # define TCL_STORAGE_CLASS DLLIMPORT #endif /* _TKWIN */