diff options
author | das <das> | 2007-11-08 14:24:47 (GMT) |
---|---|---|
committer | das <das> | 2007-11-08 14:24:47 (GMT) |
commit | c08f2e1d5f2562b82353e92ed9c8e4243de8664c (patch) | |
tree | addebaf6715f8d5dccdc5296f9984f43d180217d /macosx/tkMacOSXInt.h | |
parent | a8883697879f79d69b50fd4ccb658401d3c19b64 (diff) | |
download | tk-c08f2e1d5f2562b82353e92ed9c8e4243de8664c.zip tk-c08f2e1d5f2562b82353e92ed9c8e4243de8664c.tar.gz tk-c08f2e1d5f2562b82353e92ed9c8e4243de8664c.tar.bz2 |
* macosx/tkMacOSXSubwindows.c: add pixmap size field to MacDrawable
* macosx/tkMacOSXInt.h: struct; add flag for B&W pixmaps.
* macosx/tkMacOSXDraw.c:
* macosx/tkMacOSXEmbed.c:
* macosx/tkMacOSXMenu.c:
Diffstat (limited to 'macosx/tkMacOSXInt.h')
-rw-r--r-- | macosx/tkMacOSXInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/tkMacOSXInt.h b/macosx/tkMacOSXInt.h index 458e003..a0aace6 100644 --- a/macosx/tkMacOSXInt.h +++ b/macosx/tkMacOSXInt.h @@ -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: tkMacOSXInt.h,v 1.30 2007/10/12 03:14:48 das Exp $ + * RCS: @(#) $Id: tkMacOSXInt.h,v 1.31 2007/11/08 14:24:47 das Exp $ */ #ifndef _TKMACINT @@ -39,6 +39,7 @@ struct TkWindowPrivate { ControlRef rootControl; int xOff; /* X offset from toplevel window */ int yOff; /* Y offset from toplevel window */ + CGSize size; HIShapeRef visRgn; /* Visible region of window */ HIShapeRef aboveVisRgn; /* Visible region of window & its children */ CGRect drawRect; /* Clipped drawing rect */ @@ -72,6 +73,7 @@ typedef struct TkMacOSXWindowList { #define TK_DRAWN_UNDER_MENU 0x08 #define TK_CLIPPED_DRAW 0x10 #define TK_IS_PIXMAP 0x20 +#define TK_IS_BW_PIXMAP 0x40 /* * I am reserving TK_EMBEDDED = 0x100 in the MacDrawable flags |