Cocoa: Fix flicker on window resize.
[profile/ivi/qtbase.git] / src / plugins / platforms / cocoa / qcocoawindow.mm
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the plugins of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 #include "qcocoawindow.h"
42 #include "qnswindowdelegate.h"
43 #include "qcocoaautoreleasepool.h"
44 #include "qcocoaglcontext.h"
45 #include "qnsview.h"
46 #include <QtCore/private/qcore_mac_p.h>
47 #include <qwindow.h>
48 #include <QWindowSystemInterface>
49 #include <QPlatformScreen>
50
51 #include <Cocoa/Cocoa.h>
52 #include <Carbon/Carbon.h>
53
54 #include <QDebug>
55
56 QCocoaWindow::QCocoaWindow(QWindow *tlw)
57     : QPlatformWindow(tlw)
58     , m_glContext(0)
59 {
60     QCocoaAutoReleasePool pool;
61
62     determineWindowClass();
63     m_nsWindow = createWindow();
64
65     QNSWindowDelegate *delegate = [[QNSWindowDelegate alloc] initWithQCocoaWindow:this];
66     [m_nsWindow setDelegate:delegate];
67     [m_nsWindow setAcceptsMouseMovedEvents:YES];
68
69     m_contentView = [[QNSView alloc] initWithQWindow:tlw];
70
71     if (tlw->surfaceType() == QWindow::OpenGLSurface) {
72         NSRect glFrame = globalGeometry(window()->geometry());
73         m_windowSurfaceView = [[NSOpenGLView alloc] initWithFrame : glFrame pixelFormat : QCocoaGLContext::createNSOpenGLPixelFormat() ];
74         [m_contentView setAutoresizesSubviews : YES];
75         [m_windowSurfaceView setAutoresizingMask : (NSViewWidthSizable | NSViewHeightSizable)];
76         [m_contentView addSubview : m_windowSurfaceView];
77     } else {
78         m_windowSurfaceView = m_contentView;
79     }
80
81     [m_nsWindow setContentView:m_contentView];
82 }
83
84 QCocoaWindow::~QCocoaWindow()
85 {
86
87 }
88
89 void QCocoaWindow::setGeometry(const QRect &rect)
90 {
91     QPlatformWindow::setGeometry(rect);
92
93     NSRect bounds = globalGeometry(window()->geometry());
94     [[m_nsWindow contentView]setFrameSize:bounds.size];
95     [m_nsWindow setFrameOrigin : bounds.origin];
96
97     if (m_glContext)
98         m_glContext->update();
99 }
100
101 void QCocoaWindow::setVisible(bool visible)
102 {
103     if (visible) {
104         // The parent window might have moved while this window was hidden,
105         // update the window geometry if there is a parent.
106         if (window()->transientParent())
107             setGeometry(window()->geometry());
108
109         [m_nsWindow makeKeyAndOrderFront:nil];
110         QWindowSystemInterface::handleExposeEvent(window(), QRect(QPoint(), geometry().size()));
111     } else {
112         [m_nsWindow orderOut:nil];
113     }
114 }
115
116 void QCocoaWindow::setWindowTitle(const QString &title)
117 {
118     CFStringRef windowTitle = QCFString::toCFStringRef(title);
119     [m_nsWindow setTitle: reinterpret_cast<const NSString *>(windowTitle)];
120     CFRelease(windowTitle);
121 }
122
123 void QCocoaWindow::raise()
124 {
125     // ### handle spaces (see Qt 4 raise_sys in qwidget_mac.mm)
126     [m_nsWindow orderFront: m_nsWindow];
127 }
128
129 void QCocoaWindow::lower()
130 {
131     [m_nsWindow orderFront: m_nsWindow];
132 }
133
134 WId QCocoaWindow::winId() const
135 {
136     return WId(m_nsWindow);
137 }
138
139 NSView *QCocoaWindow::contentView() const
140 {
141     return [m_nsWindow contentView];
142 }
143
144 NSView *QCocoaWindow::windowSurfaceView() const
145 {
146     return m_windowSurfaceView;
147 }
148
149 void QCocoaWindow::windowDidMove()
150 {
151     if (m_glContext)
152         m_glContext->update();
153 }
154
155 void QCocoaWindow::windowDidResize()
156 {
157     NSRect rect = [[m_nsWindow contentView]frame];
158     QRect geo(rect.origin.x,rect.origin.y,rect.size.width,rect.size.height);
159     QWindowSystemInterface::handleSynchronousGeometryChange(window(), geo);
160
161     if (m_glContext)
162         m_glContext->update();
163 }
164
165 void QCocoaWindow::setCurrentContext(QCocoaGLContext *context)
166 {
167     m_glContext = context;
168 }
169
170 QCocoaGLContext *QCocoaWindow::currentContext() const
171 {
172     return m_glContext;
173 }
174
175 /*
176     Determine the window class based on the window type and
177     window flags, and widget attr Sets m_windowAttributes
178     and m_windowClass.
179 */
180 void QCocoaWindow::determineWindowClass()
181 {
182     Qt::WindowType type = window()->windowType();
183     Qt::WindowFlags flags = window()->windowFlags();
184
185     const bool popup = (type == Qt::Popup);
186
187     if (type == Qt::ToolTip || type == Qt::SplashScreen || popup)
188         flags |= Qt::FramelessWindowHint;
189
190     m_windowClass = kSheetWindowClass;
191
192     if (popup || type == Qt::SplashScreen)
193         m_windowClass = kModalWindowClass;
194     else if (type == Qt::ToolTip)
195         m_windowClass = kHelpWindowClass;
196     else if (type == Qt::Tool)
197         m_windowClass = kFloatingWindowClass;
198     else
199         m_windowClass = kDocumentWindowClass;
200
201     m_windowAttributes = (kWindowCompositingAttribute | kWindowStandardHandlerAttribute);
202
203 //    if(qt_mac_is_macsheet(window())) {
204 //        m_windowClass = kSheetWindowClass;
205 //    } else
206
207     {
208         // Shift things around a bit to get the correct window class based on the presence
209         // (or lack) of the border.
210
211         bool customize = flags & Qt::CustomizeWindowHint;
212         bool framelessWindow = (flags & Qt::FramelessWindowHint || (customize && !(flags & Qt::WindowTitleHint)));
213         if (framelessWindow) {
214             if (m_windowClass == kDocumentWindowClass) {
215                 m_windowAttributes |= kWindowNoTitleBarAttribute;
216             } else if (m_windowClass == kFloatingWindowClass) {
217                 m_windowAttributes |= kWindowNoTitleBarAttribute;
218             } else if (m_windowClass  == kMovableModalWindowClass) {
219                 m_windowClass = kModalWindowClass;
220             }
221         } else {
222             m_windowAttributes |= NSTitledWindowMask;
223             if (m_windowClass != kModalWindowClass)
224                 m_windowAttributes |= NSResizableWindowMask;
225         }
226
227         // Only add extra decorations (well, buttons) for widgets that can have them
228         // and have an actual border we can put them on.
229
230         if(m_windowClass != kModalWindowClass && m_windowClass != kMovableModalWindowClass
231                 && m_windowClass != kSheetWindowClass && m_windowClass != kPlainWindowClass
232                 && !framelessWindow && m_windowClass != kDrawerWindowClass
233                 && m_windowClass != kHelpWindowClass) {
234             if (flags & Qt::WindowMinimizeButtonHint)
235                 m_windowAttributes |= NSMiniaturizableWindowMask;
236             if (flags & Qt::WindowSystemMenuHint || flags & Qt::WindowCloseButtonHint)
237                 m_windowAttributes |= NSClosableWindowMask;
238         } else {
239             // Clear these hints so that we aren't call them on invalid windows
240             flags &= ~(Qt::WindowMaximizeButtonHint | Qt::WindowMinimizeButtonHint
241                        | Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint);
242         }
243
244     }
245
246     if((popup || type == Qt::Tool) && !window()->isModal())
247         m_windowAttributes |= kWindowHideOnSuspendAttribute;
248     m_windowAttributes |= kWindowLiveResizeAttribute;
249 }
250
251 /*
252
253 */
254 NSWindow * QCocoaWindow::createWindow()
255 {
256     // Determine if we need to add in our "custom window" attribute. Cocoa is rather clever
257     // in deciding if we need the maximize button or not (i.e., it's resizeable, so you
258     // must need a maximize button). So, the only buttons we have control over are the
259     // close and minimize buttons. If someone wants to customize and NOT have the maximize
260     // button, then we have to do our hack. We only do it for these cases because otherwise
261     // the window looks different when activated. This "QtMacCustomizeWindow" attribute is
262     // intruding on a public space and WILL BREAK in the future.
263     // One can hope that there is a more public API available by that time.
264 /*
265     Qt::WindowFlags flags = widget ? widget->windowFlags() : Qt::WindowFlags(0);
266     if ((flags & Qt::CustomizeWindowHint)) {
267         if ((flags & (Qt::WindowCloseButtonHint | Qt::WindowSystemMenuHint
268                       | Qt::WindowMinimizeButtonHint | Qt::WindowTitleHint))
269             && !(flags & Qt::WindowMaximizeButtonHint))
270             wattr |= QtMacCustomizeWindow;
271     }
272 */
273     NSRect frame = globalGeometry(window()->geometry());
274     QCocoaAutoReleasePool pool;
275     NSWindow *window;
276
277     switch (m_windowClass) {
278     case kMovableModalWindowClass:
279     case kModalWindowClass:
280     case kSheetWindowClass:
281     case kFloatingWindowClass:
282     case kOverlayWindowClass:
283     case kHelpWindowClass: {
284         NSPanel *panel;
285
286         BOOL needFloating = NO;
287         BOOL worksWhenModal = (this->window()->windowType() == Qt::Popup);
288
289         // Add in the extra flags if necessary.
290         switch (m_windowClass) {
291         case kSheetWindowClass:
292             m_windowAttributes |= NSDocModalWindowMask;
293             break;
294         case kFloatingWindowClass:
295         case kHelpWindowClass:
296             needFloating = YES;
297             m_windowAttributes |= NSUtilityWindowMask;
298             break;
299         default:
300             break;
301         }
302
303         panel = [[NSPanel alloc] initWithContentRect:frame
304                                    styleMask:m_windowAttributes
305                                    backing:NSBackingStoreBuffered
306                                    defer:YES];
307 //  ### crashes
308 //        [panel setFloatingPanel:needFloating];
309 //        [panel setWorksWhenModal:worksWhenModal];
310         window = panel;
311         break;
312     }
313     default:
314         window  = [[NSWindow alloc] initWithContentRect:frame
315                                             styleMask:m_windowAttributes
316                                             backing:NSBackingStoreBuffered
317                                             defer:YES];
318         break;
319     }
320
321     //qt_syncCocoaTitleBarButtons(window, widget);
322     return window;
323 }
324
325 // Calculate the global screen geometry for the given local geometry, which
326 // might be in the parent window coordinate system.
327 NSRect QCocoaWindow::globalGeometry(const QRect localGeometry) const
328 {
329     QRect finalGeometry = localGeometry;
330
331     if (QCocoaWindow *parent = parentCocoaWindow()) {
332         QRect parentGeometry = parent->windowGeometry();
333         finalGeometry.adjust(parentGeometry.x(), parentGeometry.y(), parentGeometry.x(), parentGeometry.y());
334
335         // Qt child window geometry assumes that the origin is at the
336         // top-left of the content area of the parent window. The title
337         // bar is not a part of this contet area, but is still included
338         // in the NSWindow height. Move the child window down to acccount
339         // for this if the parent window has a title bar.
340         const int titlebarHeight = 22;
341         if (!(window()->windowFlags() & Qt::FramelessWindowHint))
342             finalGeometry.adjust(0, titlebarHeight, 0, titlebarHeight);
343     }
344
345     // The final "y invert" to get OS X global geometry:
346     QPlatformScreen *onScreen = QPlatformScreen::platformScreenForWindow(window());
347     int flippedY = onScreen->geometry().height() - finalGeometry.y() - finalGeometry.height();
348     return NSMakeRect(finalGeometry.x(), flippedY, finalGeometry.width(), finalGeometry.height());
349 }
350
351 // Returns the current global screen geometry for the nswindow accociated with this window.
352 QRect QCocoaWindow::windowGeometry() const
353 {
354     NSRect rect = [m_nsWindow frame];
355     QPlatformScreen *onScreen = QPlatformScreen::platformScreenForWindow(window());
356     int flippedY = onScreen->geometry().height() - rect.origin.y - rect.size.height;  // account for nswindow inverted y.
357     QRect qRect = QRect(rect.origin.x, flippedY, rect.size.width, rect.size.height);
358     return qRect;
359 }
360
361 // Returns a pointer to the parent QCocoaWindow for this window, or 0 if there is none.
362 QCocoaWindow *QCocoaWindow::parentCocoaWindow() const
363 {
364     if (window() && window()->transientParent()) {
365         return static_cast<QCocoaWindow*>(window()->transientParent()->handle());
366     }
367     return 0;
368 }
369