user32/tests: Add test for SendMessage race condition.
[wine/multimedia.git] / dlls / winemac.drv / cocoa_window.h
blob88ef23dfd2d75a9af5dd06b3c4866dd8d35fb568
1 /*
2 * MACDRV Cocoa window declarations
4 * Copyright 2011, 2012, 2013 Ken Thomases for CodeWeavers Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #import <AppKit/AppKit.h>
24 @class WineEventQueue;
27 @interface WineWindow : NSPanel <NSWindowDelegate>
29 BOOL disabled;
30 BOOL noActivate;
31 BOOL floating;
32 BOOL resizable;
33 BOOL maximized;
34 BOOL fullscreen;
35 BOOL pendingMinimize;
36 BOOL savedVisibleState;
37 WineWindow* latentParentWindow;
38 NSMutableArray* latentChildWindows;
40 void* hwnd;
41 WineEventQueue* queue;
43 void* surface;
44 pthread_mutex_t* surface_mutex;
46 NSBezierPath* shape;
47 BOOL shapeChangedSinceLastDraw;
49 BOOL colorKeyed;
50 CGFloat colorKeyRed, colorKeyGreen, colorKeyBlue;
52 BOOL usePerPixelAlpha;
54 NSUInteger lastModifierFlags;
56 NSTimer* liveResizeDisplayTimer;
57 NSRect frameAtResizeStart;
58 BOOL resizingFromLeft, resizingFromTop;
60 void* imeData;
61 BOOL commandDone;
63 NSSize savedContentMinSize;
64 NSSize savedContentMaxSize;
66 BOOL enteringFullScreen;
67 BOOL exitingFullScreen;
68 NSRect nonFullscreenFrame;
69 NSTimeInterval enteredFullScreenTime;
71 BOOL ignore_windowDeminiaturize;
72 BOOL ignore_windowResize;
73 BOOL fakingClose;
76 @property (retain, readonly, nonatomic) WineEventQueue* queue;
77 @property (readonly, nonatomic) BOOL disabled;
78 @property (readonly, nonatomic) BOOL noActivate;
79 @property (readonly, nonatomic) BOOL floating;
80 @property (readonly, getter=isFullscreen, nonatomic) BOOL fullscreen;
81 @property (readonly, getter=isFakingClose, nonatomic) BOOL fakingClose;
83 - (NSInteger) minimumLevelForActive:(BOOL)active;
84 - (void) updateFullscreen;
86 - (void) postKeyEvent:(NSEvent *)theEvent;
87 - (void) postBroughtForwardEvent;
89 - (WineWindow*) ancestorWineWindow;
91 - (void) updateForCursorClipping;
93 @end