Cocoa: Improve window activation handling.
[profile/ivi/qtbase.git] / src / plugins / platforms / cocoa / qcocoawindow.mm
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
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 "qcocoahelpers.h"
46 #include "qnsview.h"
47 #include <QtCore/private/qcore_mac_p.h>
48 #include <qwindow.h>
49 #include <QWindowSystemInterface>
50 #include <QPlatformScreen>
51
52 #include <Cocoa/Cocoa.h>
53 #include <Carbon/Carbon.h>
54
55 #include <QDebug>
56
57 @implementation QNSWindow
58
59 - (BOOL)canBecomeKeyWindow
60 {
61     // The default implementation returns NO for title-bar less windows,
62     // override and return yes here to make sure popup windows such as
63     // the combobox popup can become the key window.
64     return YES;
65 }
66
67 - (BOOL)canBecomeMainWindow
68 {
69     BOOL canBecomeMain = YES; // By default, windows can become the main window
70
71     // Windows with a transient parent (such as combobox popup windows)
72     // cannot become the main window:
73     if (m_cocoaPlatformWindow->window()->transientParent())
74         canBecomeMain = NO;
75
76     return canBecomeMain;
77 }
78
79
80 @end
81
82 @implementation QNSPanel
83
84 - (BOOL)canBecomeKeyWindow
85 {
86     // Most panels can be come the key window. Exceptions are:
87     if (m_cocoaPlatformWindow->window()->windowType() == Qt::ToolTip)
88         return NO;
89     if (m_cocoaPlatformWindow->window()->windowType() == Qt::SplashScreen)
90         return NO;
91     return YES;
92 }
93
94 @end
95
96 QCocoaWindow::QCocoaWindow(QWindow *tlw)
97     : QPlatformWindow(tlw)
98     , m_nsWindow(0)
99     , m_glContext(0)
100     , m_inConstructor(true)
101 {
102     QCocoaAutoReleasePool pool;
103
104     m_contentView = [[QNSView alloc] initWithQWindow:tlw platformWindow:this];
105     setGeometry(tlw->geometry());
106
107     recreateWindow(parent());
108
109     m_inConstructor = false;
110 }
111
112 QCocoaWindow::~QCocoaWindow()
113 {
114     [m_contentView release];
115     clearNSWindow(m_nsWindow);
116     [m_nsWindow release];
117 }
118
119 void QCocoaWindow::setGeometry(const QRect &rect)
120 {
121     if (geometry() == rect)
122         return;
123 #ifdef QT_COCOA_ENABLE_WINDOW_DEBUG
124     qDebug() << "QCocoaWindow::setGeometry" << this << rect;
125 #endif
126     QPlatformWindow::setGeometry(rect);
127     setCocoaGeometry(rect);
128 }
129
130 void QCocoaWindow::setCocoaGeometry(const QRect &rect)
131 {
132     if (m_nsWindow) {
133         NSRect bounds = qt_mac_flipRect(rect, window());
134         [m_nsWindow setContentSize : bounds.size];
135         [m_nsWindow setFrameOrigin : bounds.origin];
136     } else {
137         [m_contentView setFrame : NSMakeRect(rect.x(), rect.y(), rect.width(), rect.height())];
138     }
139 }
140
141 void QCocoaWindow::setVisible(bool visible)
142 {
143     QCocoaAutoReleasePool pool;
144 #ifdef QT_COCOA_ENABLE_WINDOW_DEBUG
145     qDebug() << "QCocoaWindow::setVisible" << window() << visible;
146 #endif
147     if (visible) {
148         if (window()->transientParent()) {
149             // The parent window might have moved while this window was hidden,
150             // update the window geometry if there is a parent.
151             setGeometry(window()->geometry());
152
153             // Register popup windows so that the parent window can
154             // close them when needed.
155             if (window()->windowType() == Qt::Popup) {
156                 // qDebug() << "transientParent and popup" << window()->windowType() << Qt::Popup << (window()->windowType() & Qt::Popup);
157
158                 QCocoaWindow *parentCocoaWindow = static_cast<QCocoaWindow *>(window()->transientParent()->handle());
159                 parentCocoaWindow->m_activePopupWindow = window();
160             }
161
162         }
163
164         // Make sure the QWindow has a frame ready before we show the NSWindow.
165         QWindowSystemInterface::handleSynchronousExposeEvent(window(), QRect(QPoint(), geometry().size()));
166
167         if (m_nsWindow) {
168             if ([m_nsWindow canBecomeKeyWindow])
169                 [m_nsWindow makeKeyAndOrderFront:nil];
170             else
171                 [m_nsWindow orderFront: nil];
172         }
173     } else {
174         // qDebug() << "close" << this;
175         if (m_nsWindow)
176             [m_nsWindow orderOut:m_nsWindow];
177     }
178 }
179
180 Qt::WindowFlags QCocoaWindow::setWindowFlags(Qt::WindowFlags flags)
181 {
182     m_windowFlags = flags;
183     return m_windowFlags;
184 }
185
186 void QCocoaWindow::setWindowTitle(const QString &title)
187 {
188     QCocoaAutoReleasePool pool;
189     if (!m_nsWindow)
190         return;
191
192     CFStringRef windowTitle = QCFString::toCFStringRef(title);
193     [m_nsWindow setTitle: const_cast<NSString *>(reinterpret_cast<const NSString *>(windowTitle))];
194     CFRelease(windowTitle);
195 }
196
197 void QCocoaWindow::raise()
198 {
199     //qDebug() << "raise" << this;
200     // ### handle spaces (see Qt 4 raise_sys in qwidget_mac.mm)
201     if (m_nsWindow)
202         [m_nsWindow orderFront: m_nsWindow];
203 }
204
205 void QCocoaWindow::lower()
206 {
207     if (m_nsWindow)
208         [m_nsWindow orderBack: m_nsWindow];
209 }
210
211 void QCocoaWindow::propagateSizeHints()
212 {
213     QCocoaAutoReleasePool pool;
214     if (!m_nsWindow)
215         return;
216
217     [m_nsWindow setMinSize : qt_mac_toNSSize(window()->minimumSize())];
218     [m_nsWindow setMaxSize : qt_mac_toNSSize(window()->maximumSize())];
219
220 #ifdef QT_COCOA_ENABLE_WINDOW_DEBUG
221     qDebug() << "QCocoaWindow::propagateSizeHints" << this;
222     qDebug() << "     min/max " << window()->minimumSize() << window()->maximumSize();
223     qDebug() << "     basesize" << window()->baseSize();
224     qDebug() << "     geometry" << geometry();
225 #endif
226
227     if (!window()->sizeIncrement().isNull())
228         [m_nsWindow setResizeIncrements : qt_mac_toNSSize(window()->sizeIncrement())];
229
230     QSize baseSize = window()->baseSize();
231     if (!baseSize.isNull() && baseSize.isValid()) {
232         [m_nsWindow setFrameSize : NSMakeSize(baseSize.width(), baseSize.height()) display : YES];
233     }
234 }
235
236 bool QCocoaWindow::setKeyboardGrabEnabled(bool grab)
237 {
238     if (!m_nsWindow)
239         return false;
240
241     if (grab && ![m_nsWindow isKeyWindow])
242         [m_nsWindow makeKeyWindow];
243     else if (!grab && [m_nsWindow isKeyWindow])
244         [m_nsWindow resignKeyWindow];
245     return true;
246 }
247
248 bool QCocoaWindow::setMouseGrabEnabled(bool grab)
249 {
250     if (!m_nsWindow)
251         return false;
252
253     if (grab && ![m_nsWindow isKeyWindow])
254         [m_nsWindow makeKeyWindow];
255     else if (!grab && [m_nsWindow isKeyWindow])
256         [m_nsWindow resignKeyWindow];
257     return true;
258 }
259
260 WId QCocoaWindow::winId() const
261 {
262     return WId(m_contentView);
263 }
264
265 void QCocoaWindow::setParent(const QPlatformWindow *parentWindow)
266 {
267     // recreate the window for compatibility
268     recreateWindow(parentWindow);
269     setCocoaGeometry(geometry());
270 }
271
272 NSView *QCocoaWindow::contentView() const
273 {
274     return m_contentView;
275 }
276
277 void QCocoaWindow::windowWillMove()
278 {
279     // Close any open popups on window move
280     if (m_activePopupWindow) {
281         QWindowSystemInterface::handleSynchronousCloseEvent(m_activePopupWindow);
282         m_activePopupWindow = 0;
283     }
284 }
285
286 void QCocoaWindow::windowDidMove()
287 {
288     [m_contentView updateGeometry];
289 }
290
291 void QCocoaWindow::windowDidResize()
292 {
293     if (!m_nsWindow)
294         return;
295
296     NSRect rect = [[m_nsWindow contentView]frame];
297     // Call setFrameSize which will trigger a frameDidChangeNotification on QNSView.
298     [[m_nsWindow contentView] setFrameSize:rect.size];
299 }
300
301 void QCocoaWindow::windowWillClose()
302 {
303     QWindowSystemInterface::handleSynchronousCloseEvent(window());
304 }
305
306 bool QCocoaWindow::windowIsPopupType() const
307 {
308     Qt::WindowType type = window()->windowType();
309     if (type == Qt::Tool)
310         return false; // Qt::Tool has the Popup bit set but isn't, at least on Mac.
311
312     return ((type & Qt::Popup) == Qt::Popup);
313 }
314
315 void QCocoaWindow::setCurrentContext(QCocoaGLContext *context)
316 {
317     m_glContext = context;
318 }
319
320 QCocoaGLContext *QCocoaWindow::currentContext() const
321 {
322     return m_glContext;
323 }
324
325 void QCocoaWindow::recreateWindow(const QPlatformWindow *parentWindow)
326 {
327     // Remove current window (if any)
328     if (m_nsWindow) {
329         clearNSWindow(m_nsWindow);
330         [m_nsWindow close];
331         [m_nsWindow release];
332         m_nsWindow = 0;
333     }
334
335     if (!parentWindow) {
336         // Create a new NSWindow if this is a top-level window.
337         m_nsWindow = createNSWindow();
338         setNSWindow(m_nsWindow);
339     } else {
340         // Child windows have no NSWindow, link the NSViews instead.
341         const QCocoaWindow *parentCococaWindow = static_cast<const QCocoaWindow *>(parentWindow);
342         [parentCococaWindow->m_contentView addSubview : m_contentView];
343     }
344 }
345
346 NSWindow * QCocoaWindow::createNSWindow()
347 {
348     QCocoaAutoReleasePool pool;
349
350     NSRect frame = qt_mac_flipRect(window()->geometry(), window());
351
352     Qt::WindowType type = window()->windowType();
353     Qt::WindowFlags flags = window()->windowFlags();
354
355     NSUInteger styleMask;
356     NSWindow *createdWindow = 0;
357
358     // Use NSPanel for popup-type windows. (Popup, Tool, ToolTip, SplashScreen)
359     if ((type & Qt::Popup) == Qt::Popup) {
360         if (windowIsPopupType()) {
361             styleMask = NSBorderlessWindowMask;
362         } else {
363             styleMask = (NSUtilityWindowMask | NSResizableWindowMask | NSClosableWindowMask |
364                          NSMiniaturizableWindowMask | NSTitledWindowMask);
365         }
366
367         QNSPanel *window;
368         window  = [[QNSPanel alloc] initWithContentRect:frame
369                                          styleMask: styleMask
370                                          backing:NSBackingStoreBuffered
371                                          defer:NO]; // Deferring window creation breaks OpenGL (the GL context is set up
372                                                     // before the window is shown and needs a proper window.).
373         [window setHasShadow:YES];
374         window->m_cocoaPlatformWindow = this;
375         createdWindow = window;
376     } else {
377         styleMask = (NSResizableWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSTitledWindowMask);
378         QNSWindow *window;
379         window  = [[QNSWindow alloc] initWithContentRect:frame
380                                          styleMask: styleMask
381                                          backing:NSBackingStoreBuffered
382                                          defer:NO]; // Deferring window creation breaks OpenGL (the GL context is set up
383                                                     // before the window is shown and needs a proper window.).
384         window->m_cocoaPlatformWindow = this;
385         createdWindow = window;
386     }
387     return createdWindow;
388 }
389
390 void QCocoaWindow::setNSWindow(NSWindow *window)
391 {
392     QNSWindowDelegate *delegate = [[QNSWindowDelegate alloc] initWithQCocoaWindow:this];
393     [window setDelegate:delegate];
394     [window setAcceptsMouseMovedEvents:YES];
395
396     // Prevent Cocoa from releasing the window on close. Qt
397     // handles the close event asynchronously and we want to
398     // make sure that m_nsWindow stays valid until the
399     // QCocoaWindow is deleted by Qt.
400     [window setReleasedWhenClosed : NO];
401
402     [[NSNotificationCenter defaultCenter] addObserver:m_contentView
403                                           selector:@selector(windowDidBecomeKey)
404                                           name:NSWindowDidBecomeKeyNotification
405                                           object:m_nsWindow];
406
407     [[NSNotificationCenter defaultCenter] addObserver:m_contentView
408                                           selector:@selector(windowDidResignKey)
409                                           name:NSWindowDidResignKeyNotification
410                                           object:m_nsWindow];
411
412     [[NSNotificationCenter defaultCenter] addObserver:m_contentView
413                                           selector:@selector(windowDidBecomeMain)
414                                           name:NSWindowDidBecomeMainNotification
415                                           object:m_nsWindow];
416
417     [[NSNotificationCenter defaultCenter] addObserver:m_contentView
418                                           selector:@selector(windowDidResignMain)
419                                           name:NSWindowDidResignMainNotification
420                                           object:m_nsWindow];
421
422
423     // ### Accept touch events by default.
424     // Beware that enabling touch events has a negative impact on the overall performance.
425     // We probably need a QWindowSystemInterface API to enable/disable touch events.
426     [m_contentView setAcceptsTouchEvents:YES];
427
428     [window setContentView:m_contentView];
429 }
430
431 void QCocoaWindow::clearNSWindow(NSWindow *window)
432 {
433     [[NSNotificationCenter defaultCenter] removeObserver:m_contentView];
434 }
435
436 // Returns the current global screen geometry for the nswindow associated with this window.
437 QRect QCocoaWindow::windowGeometry() const
438 {
439     if (!m_nsWindow)
440         return geometry();
441
442     NSRect rect = [m_nsWindow frame];
443     QPlatformScreen *onScreen = QPlatformScreen::platformScreenForWindow(window());
444     int flippedY = onScreen->geometry().height() - rect.origin.y - rect.size.height;  // account for nswindow inverted y.
445     QRect qRect = QRect(rect.origin.x, flippedY, rect.size.width, rect.size.height);
446     return qRect;
447 }
448
449 // Returns a pointer to the parent QCocoaWindow for this window, or 0 if there is none.
450 QCocoaWindow *QCocoaWindow::parentCocoaWindow() const
451 {
452     if (window() && window()->transientParent()) {
453         return static_cast<QCocoaWindow*>(window()->transientParent()->handle());
454     }
455     return 0;
456 }
457