include/mscvpdb.h: Use flexible array members for the rest of structures.
[wine.git] / dlls / winemac.drv / cocoa_window.h
blobb5168d0c128e11590d229e6946050c5449328161
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 noForeground;
31 BOOL preventsAppActivation;
32 BOOL floating;
33 BOOL resizable;
34 BOOL maximized;
35 BOOL fullscreen;
36 BOOL pendingMinimize;
37 BOOL pendingOrderOut;
38 BOOL savedVisibleState;
39 BOOL drawnSinceShown;
40 BOOL closing;
41 WineWindow* latentParentWindow;
42 NSMutableArray* latentChildWindows;
44 void* hwnd;
45 WineEventQueue* queue;
47 CGDirectDisplayID _lastDisplayID;
48 NSTimeInterval _lastDisplayTime;
50 NSRect wineFrame;
51 NSRect roundedWineFrame;
53 BOOL shapeChangedSinceLastDraw;
55 BOOL colorKeyed;
56 CGFloat colorKeyRed, colorKeyGreen, colorKeyBlue;
58 BOOL usePerPixelAlpha;
60 NSUInteger lastModifierFlags;
62 NSRect frameAtResizeStart;
63 BOOL resizingFromLeft, resizingFromTop;
65 void* himc;
66 BOOL commandDone;
68 NSSize savedContentMinSize;
69 NSSize savedContentMaxSize;
71 BOOL enteringFullScreen;
72 BOOL exitingFullScreen;
73 NSRect nonFullscreenFrame;
74 NSTimeInterval enteredFullScreenTime;
76 int draggingPhase;
77 NSPoint dragStartPosition;
78 NSPoint dragWindowStartPosition;
80 NSTimeInterval lastDockIconSnapshot;
82 BOOL allowKeyRepeats;
84 BOOL ignore_windowDeminiaturize;
85 BOOL ignore_windowResize;
86 BOOL fakingClose;
89 @property (retain, readonly, nonatomic) WineEventQueue* queue;
90 @property (readonly, nonatomic) BOOL disabled;
91 @property (readonly, nonatomic) BOOL noForeground;
92 @property (readonly, nonatomic) BOOL preventsAppActivation;
93 @property (readonly, nonatomic) BOOL floating;
94 @property (readonly, getter=isFullscreen, nonatomic) BOOL fullscreen;
95 @property (readonly, getter=isFakingClose, nonatomic) BOOL fakingClose;
96 @property (readonly, nonatomic) NSRect wine_fractionalFrame;
98 - (NSInteger) minimumLevelForActive:(BOOL)active;
99 - (void) updateFullscreen;
101 - (void) postKeyEvent:(NSEvent *)theEvent;
102 - (void) postBroughtForwardEvent;
104 - (WineWindow*) ancestorWineWindow;
106 - (void) updateForCursorClipping;
108 - (void) setRetinaMode:(int)mode;
110 @end