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 QtGui module of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at qt-info@nokia.com.
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /****************************************************************************
|
---|
43 | **
|
---|
44 | ** Copyright (c) 2007-2008, Apple, Inc.
|
---|
45 | **
|
---|
46 | ** All rights reserved.
|
---|
47 | **
|
---|
48 | ** Redistribution and use in source and binary forms, with or without
|
---|
49 | ** modification, are permitted provided that the following conditions are met:
|
---|
50 | **
|
---|
51 | ** * Redistributions of source code must retain the above copyright notice,
|
---|
52 | ** this list of conditions and the following disclaimer.
|
---|
53 | **
|
---|
54 | ** * Redistributions in binary form must reproduce the above copyright notice,
|
---|
55 | ** this list of conditions and the following disclaimer in the documentation
|
---|
56 | ** and/or other materials provided with the distribution.
|
---|
57 | **
|
---|
58 | ** * Neither the name of Apple, Inc. nor the names of its contributors
|
---|
59 | ** may be used to endorse or promote products derived from this software
|
---|
60 | ** without specific prior written permission.
|
---|
61 | **
|
---|
62 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
63 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
64 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
65 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
---|
66 | ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
---|
67 | ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
---|
68 | ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
---|
69 | ** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
---|
70 | ** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
---|
71 | ** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
72 | ** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
73 | **
|
---|
74 | ****************************************************************************/
|
---|
75 |
|
---|
76 | #include "qmacdefines_mac.h"
|
---|
77 | #ifdef QT_MAC_USE_COCOA
|
---|
78 |
|
---|
79 | #import <private/qcocoaapplicationdelegate_mac_p.h>
|
---|
80 | #import <private/qcocoamenuloader_mac_p.h>
|
---|
81 | #include <private/qapplication_p.h>
|
---|
82 | #include <private/qt_mac_p.h>
|
---|
83 | #include <private/qt_cocoa_helpers_mac_p.h>
|
---|
84 | #include <private/qdesktopwidget_mac_p.h>
|
---|
85 | #include <qevent.h>
|
---|
86 | #include <qurl.h>
|
---|
87 | #include <qapplication.h>
|
---|
88 |
|
---|
89 | QT_BEGIN_NAMESPACE
|
---|
90 | extern void onApplicationChangedActivation(bool); // qapplication_mac.mm
|
---|
91 | extern void qt_release_apple_event_handler(); //qapplication_mac.mm
|
---|
92 | QT_END_NAMESPACE
|
---|
93 |
|
---|
94 | QT_FORWARD_DECLARE_CLASS(QDesktopWidgetImplementation)
|
---|
95 | QT_USE_NAMESPACE
|
---|
96 |
|
---|
97 | static QT_MANGLE_NAMESPACE(QCocoaApplicationDelegate) *sharedCocoaApplicationDelegate = nil;
|
---|
98 |
|
---|
99 | static void cleanupCocoaApplicationDelegate()
|
---|
100 | {
|
---|
101 | [sharedCocoaApplicationDelegate release];
|
---|
102 | }
|
---|
103 |
|
---|
104 | @implementation QT_MANGLE_NAMESPACE(QCocoaApplicationDelegate)
|
---|
105 |
|
---|
106 | - (id)init
|
---|
107 | {
|
---|
108 | self = [super init];
|
---|
109 | if (self)
|
---|
110 | inLaunch = true;
|
---|
111 | return self;
|
---|
112 | }
|
---|
113 |
|
---|
114 | - (void)dealloc
|
---|
115 | {
|
---|
116 | sharedCocoaApplicationDelegate = nil;
|
---|
117 | [dockMenu release];
|
---|
118 | [qtMenuLoader release];
|
---|
119 | if (reflectionDelegate) {
|
---|
120 | [NSApp setDelegate:reflectionDelegate];
|
---|
121 | [reflectionDelegate release];
|
---|
122 | }
|
---|
123 | [super dealloc];
|
---|
124 | }
|
---|
125 |
|
---|
126 | + (id)allocWithZone:(NSZone *)zone
|
---|
127 | {
|
---|
128 | @synchronized(self) {
|
---|
129 | if (sharedCocoaApplicationDelegate == nil) {
|
---|
130 | sharedCocoaApplicationDelegate = [super allocWithZone:zone];
|
---|
131 | return sharedCocoaApplicationDelegate;
|
---|
132 | qAddPostRoutine(cleanupCocoaApplicationDelegate);
|
---|
133 | }
|
---|
134 | }
|
---|
135 | return nil;
|
---|
136 | }
|
---|
137 |
|
---|
138 | + (QT_MANGLE_NAMESPACE(QCocoaApplicationDelegate)*)sharedDelegate
|
---|
139 | {
|
---|
140 | @synchronized(self) {
|
---|
141 | if (sharedCocoaApplicationDelegate == nil)
|
---|
142 | [[self alloc] init];
|
---|
143 | }
|
---|
144 | return [[sharedCocoaApplicationDelegate retain] autorelease];
|
---|
145 | }
|
---|
146 |
|
---|
147 | - (void)setDockMenu:(NSMenu*)newMenu
|
---|
148 | {
|
---|
149 | [newMenu retain];
|
---|
150 | [dockMenu release];
|
---|
151 | dockMenu = newMenu;
|
---|
152 | }
|
---|
153 |
|
---|
154 | - (NSMenu *)applicationDockMenu
|
---|
155 | {
|
---|
156 | return [[dockMenu retain] autorelease];
|
---|
157 | }
|
---|
158 |
|
---|
159 | - (QApplicationPrivate *)qAppPrivate
|
---|
160 | {
|
---|
161 | return qtPrivate;
|
---|
162 | }
|
---|
163 |
|
---|
164 | - (void)setQtPrivate:(QApplicationPrivate *)value
|
---|
165 | {
|
---|
166 | qtPrivate = value;
|
---|
167 | }
|
---|
168 |
|
---|
169 | - (void)setMenuLoader:(QT_MANGLE_NAMESPACE(QCocoaMenuLoader) *)menuLoader
|
---|
170 | {
|
---|
171 | [menuLoader retain];
|
---|
172 | [qtMenuLoader release];
|
---|
173 | qtMenuLoader = menuLoader;
|
---|
174 | }
|
---|
175 |
|
---|
176 | - (QT_MANGLE_NAMESPACE(QCocoaMenuLoader) *)menuLoader;
|
---|
177 | {
|
---|
178 | return [[qtMenuLoader retain] autorelease];
|
---|
179 | }
|
---|
180 |
|
---|
181 | // This function will only be called when NSApp is actually running. Before
|
---|
182 | // that, the kAEQuitApplication Apple event will be sent to
|
---|
183 | // QApplicationPrivate::globalAppleEventProcessor in qapplication_mac.mm
|
---|
184 | - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
---|
185 | {
|
---|
186 | Q_UNUSED(sender);
|
---|
187 | // The reflection delegate gets precedence
|
---|
188 | if (reflectionDelegate
|
---|
189 | && [reflectionDelegate respondsToSelector:@selector(applicationShouldTerminate:)]) {
|
---|
190 | return [reflectionDelegate applicationShouldTerminate:sender];
|
---|
191 | }
|
---|
192 |
|
---|
193 | if (qtPrivate->canQuit()) {
|
---|
194 | if (!startedQuit) {
|
---|
195 | startedQuit = true;
|
---|
196 | qAppInstance()->quit();
|
---|
197 | startedQuit = false;
|
---|
198 | }
|
---|
199 | }
|
---|
200 |
|
---|
201 | if (qtPrivate->threadData->eventLoops.size() == 0) {
|
---|
202 | // INVARIANT: No event loop is executing. This probably
|
---|
203 | // means that Qt is used as a plugin, or as a part of a native
|
---|
204 | // Cocoa application. In any case it should be fine to
|
---|
205 | // terminate now:
|
---|
206 | return NSTerminateNow;
|
---|
207 | }
|
---|
208 |
|
---|
209 | return NSTerminateCancel;
|
---|
210 | }
|
---|
211 |
|
---|
212 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
---|
213 | {
|
---|
214 | Q_UNUSED(aNotification);
|
---|
215 | inLaunch = false;
|
---|
216 | qt_release_apple_event_handler();
|
---|
217 | }
|
---|
218 |
|
---|
219 | - (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames
|
---|
220 | {
|
---|
221 | for (NSString *fileName in filenames) {
|
---|
222 | QString qtFileName = qt_mac_NSStringToQString(fileName);
|
---|
223 | if (inLaunch) {
|
---|
224 | // We need to be careful because Cocoa will be nice enough to take
|
---|
225 | // command line arguments and send them to us as events. Given the history
|
---|
226 | // of Qt Applications, this will result in behavior people don't want, as
|
---|
227 | // they might be doing the opening themselves with the command line parsing.
|
---|
228 | if (qApp->arguments().contains(qtFileName))
|
---|
229 | continue;
|
---|
230 | }
|
---|
231 | QFileOpenEvent foe(qtFileName);
|
---|
232 | qt_sendSpontaneousEvent(qAppInstance(), &foe);
|
---|
233 | }
|
---|
234 |
|
---|
235 | if (reflectionDelegate &&
|
---|
236 | [reflectionDelegate respondsToSelector:@selector(application:openFiles:)])
|
---|
237 | [reflectionDelegate application:sender openFiles:filenames];
|
---|
238 | }
|
---|
239 |
|
---|
240 | - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender
|
---|
241 | {
|
---|
242 | // If we have a reflection delegate, that will get to call the shots.
|
---|
243 | if (reflectionDelegate
|
---|
244 | && [reflectionDelegate respondsToSelector:
|
---|
245 | @selector(applicationShouldTerminateAfterLastWindowClosed:)])
|
---|
246 | return [reflectionDelegate applicationShouldTerminateAfterLastWindowClosed:sender];
|
---|
247 | return NO; // Someday qApp->quitOnLastWindowClosed(); when QApp and NSApp work closer together.
|
---|
248 | }
|
---|
249 |
|
---|
250 |
|
---|
251 | - (void)applicationDidBecomeActive:(NSNotification *)notification
|
---|
252 | {
|
---|
253 | if (reflectionDelegate
|
---|
254 | && [reflectionDelegate respondsToSelector:@selector(applicationDidBecomeActive:)])
|
---|
255 | [reflectionDelegate applicationDidBecomeActive:notification];
|
---|
256 | onApplicationChangedActivation(true);
|
---|
257 | }
|
---|
258 |
|
---|
259 | - (void)applicationDidResignActive:(NSNotification *)notification;
|
---|
260 | {
|
---|
261 | if (reflectionDelegate
|
---|
262 | && [reflectionDelegate respondsToSelector:@selector(applicationDidResignActive:)])
|
---|
263 | [reflectionDelegate applicationDidResignActive:notification];
|
---|
264 | onApplicationChangedActivation(false);
|
---|
265 | }
|
---|
266 |
|
---|
267 | - (void)applicationDidChangeScreenParameters:(NSNotification *)notification
|
---|
268 | {
|
---|
269 | Q_UNUSED(notification);
|
---|
270 | QDesktopWidgetImplementation::instance()->onResize();
|
---|
271 | }
|
---|
272 |
|
---|
273 | - (void)setReflectionDelegate:(NSObject <NSApplicationDelegate> *)oldDelegate
|
---|
274 | {
|
---|
275 | [oldDelegate retain];
|
---|
276 | [reflectionDelegate release];
|
---|
277 | reflectionDelegate = oldDelegate;
|
---|
278 | }
|
---|
279 |
|
---|
280 | - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
|
---|
281 | {
|
---|
282 | NSMethodSignature *result = [super methodSignatureForSelector:aSelector];
|
---|
283 | if (!result && reflectionDelegate) {
|
---|
284 | result = [reflectionDelegate methodSignatureForSelector:aSelector];
|
---|
285 | }
|
---|
286 | return result;
|
---|
287 | }
|
---|
288 |
|
---|
289 | - (BOOL)respondsToSelector:(SEL)aSelector
|
---|
290 | {
|
---|
291 | BOOL result = [super respondsToSelector:aSelector];
|
---|
292 | if (!result && reflectionDelegate)
|
---|
293 | result = [reflectionDelegate respondsToSelector:aSelector];
|
---|
294 | return result;
|
---|
295 | }
|
---|
296 |
|
---|
297 | - (void)forwardInvocation:(NSInvocation *)invocation
|
---|
298 | {
|
---|
299 | SEL invocationSelector = [invocation selector];
|
---|
300 | if (reflectionDelegate && [reflectionDelegate respondsToSelector:invocationSelector])
|
---|
301 | [invocation invokeWithTarget:reflectionDelegate];
|
---|
302 | else
|
---|
303 | [self doesNotRecognizeSelector:invocationSelector];
|
---|
304 | }
|
---|
305 |
|
---|
306 | - (void)getUrl:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent
|
---|
307 | {
|
---|
308 | Q_UNUSED(replyEvent);
|
---|
309 |
|
---|
310 | NSString *urlString = [[event paramDescriptorForKeyword:keyDirectObject] stringValue];
|
---|
311 | QUrl url(qt_mac_NSStringToQString(urlString));
|
---|
312 | QFileOpenEvent qtEvent(url);
|
---|
313 | qt_sendSpontaneousEvent(qAppInstance(), &qtEvent);
|
---|
314 | }
|
---|
315 |
|
---|
316 | - (void)appleEventQuit:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent
|
---|
317 | {
|
---|
318 | Q_UNUSED(event);
|
---|
319 | Q_UNUSED(replyEvent);
|
---|
320 | [NSApp terminate:self];
|
---|
321 | }
|
---|
322 |
|
---|
323 | - (void)qtDispatcherToQAction:(id)sender
|
---|
324 | {
|
---|
325 | [[NSApp QT_MANGLE_NAMESPACE(qt_qcocoamenuLoader)] qtDispatcherToQAction:sender];
|
---|
326 | }
|
---|
327 |
|
---|
328 | @end
|
---|
329 | #endif
|
---|