winemac: Implement WGL_EXT_swap_control.
[wine] / dlls / winemac.drv / cocoa_window.h
1 /*
2  * MACDRV Cocoa window declarations
3  *
4  * Copyright 2011, 2012, 2013 Ken Thomases for CodeWeavers Inc.
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #import <AppKit/AppKit.h>
22
23
24 @class WineEventQueue;
25
26
27 @interface WineWindow : NSPanel <NSWindowDelegate>
28 {
29     NSUInteger normalStyleMask;
30     BOOL disabled;
31     BOOL noActivate;
32     BOOL floating;
33     WineWindow* latentParentWindow;
34
35     void* hwnd;
36     WineEventQueue* queue;
37
38     void* surface;
39     pthread_mutex_t* surface_mutex;
40
41     NSBezierPath* shape;
42     BOOL shapeChangedSinceLastDraw;
43
44     BOOL colorKeyed;
45     CGFloat colorKeyRed, colorKeyGreen, colorKeyBlue;
46
47     BOOL usePerPixelAlpha;
48
49     NSUInteger lastModifierFlags;
50
51     double mouseMoveDeltaX, mouseMoveDeltaY;
52
53     NSInteger levelWhenActive;
54
55     BOOL causing_becomeKeyWindow;
56     BOOL ignore_windowMiniaturize;
57     BOOL ignore_windowDeminiaturize;
58 }
59
60 @property (retain, readonly, nonatomic) WineEventQueue* queue;
61 @property (readonly, nonatomic) BOOL floating;
62 @property (readonly, nonatomic) NSInteger levelWhenActive;
63
64     - (void) adjustWindowLevel;
65
66     - (void) postMouseMovedEvent:(NSEvent *)theEvent absolute:(BOOL)absolute;
67
68 @end