]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/app.mm
When a modal dialog is shown and the app isn't running, run the event
[wxWidgets.git] / src / cocoa / app.mm
CommitLineData
fb896a32
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: cocoa/app.mm
3// Purpose: wxApp
4// Author: David Elliott
5// Modified by:
6// Created: 2002/11/27
d89d4059 7// RCS-ID: $Id$
fb896a32 8// Copyright: (c) David Elliott
d89d4059 9// Licence: wxWindows licence
fb896a32
DE
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#include "wx/wxprec.h"
21#ifndef WX_PRECOMP
22 #include "wx/defs.h"
23 #include "wx/app.h"
24 #include "wx/frame.h"
25 #include "wx/dialog.h"
891d0563 26 #include "wx/dc.h"
fb896a32
DE
27 #include "wx/intl.h"
28 #include "wx/log.h"
fb896a32
DE
29#endif
30
11c08416
DE
31#include "wx/module.h"
32
fb45bb1f 33#include "wx/cocoa/ObjcPose.h"
493902ac 34#include "wx/cocoa/autorelease.h"
af367f46 35#include "wx/cocoa/mbarman.h"
fb45bb1f 36
fb896a32
DE
37#if wxUSE_WX_RESOURCES
38# include "wx/resource.h"
39#endif
40
41#import <AppKit/NSApplication.h>
42#import <Foundation/NSRunLoop.h>
43#import <Foundation/NSArray.h>
47f1ad6a 44#import <Foundation/NSAutoreleasePool.h>
14fc7eb4 45#import <Foundation/NSThread.h>
fb896a32
DE
46
47// ----------------------------------------------------------------------------
48// globals
49// ----------------------------------------------------------------------------
50
fb896a32
DE
51wxPoseAsInitializer *wxPoseAsInitializer::sm_first = NULL;
52
53@interface wxPoserNSApplication : NSApplication
54{
55}
56
57- (void)doIdle: (id)data;
fb896a32
DE
58- (void)sendEvent: (NSEvent*)anEvent;
59- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication;
60@end // wxPoserNSApplication
61
62@implementation wxPoserNSApplication : NSApplication
63
64- (void)doIdle: (id)data
65{
66 wxASSERT(wxTheApp);
af367f46
DE
67 wxASSERT(wxMenuBarManager::GetInstance());
68 wxMenuBarManager::GetInstance()->CocoaInternalIdle();
fb896a32 69 wxLogDebug("doIdle called");
b93d8cc4
DE
70#ifdef __WXDEBUG__
71 if(wxTheApp->IsInAssert())
fb896a32 72 {
b93d8cc4
DE
73 wxLogDebug("Idle events ignored durring assertion dialog");
74 }
75 else
76#endif
77 {
78 NSRunLoop *rl = [NSRunLoop currentRunLoop];
79 // runMode: beforeDate returns YES if something was done
80 while(wxTheApp->ProcessIdle()) // FIXME: AND NO EVENTS ARE PENDING
fb896a32 81 {
b93d8cc4
DE
82 wxLogDebug("Looping for idle events");
83 #if 1
84 if( [rl runMode:[rl currentMode] beforeDate:[NSDate distantPast]])
85 {
86 wxLogDebug("Found actual work to do");
87 break;
88 }
89 #endif
fb896a32 90 }
fb896a32
DE
91 }
92 wxLogDebug("Idle processing complete, requesting next idle event");
93 // Add ourself back into the run loop (on next event) if necessary
94 wxTheApp->CocoaRequestIdle();
95}
96
fb896a32
DE
97- (void)sendEvent: (NSEvent*)anEvent
98{
99 wxLogDebug("SendEvent");
100 wxTheApp->CocoaInstallRequestedIdleHandler();
101 [super sendEvent: anEvent];
102}
103
104- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
105{
106 BOOL ret = wxTheApp->GetExitOnFrameDelete();
107 wxLogDebug("applicationShouldTermintaeAfterLastWindowClosed=%d",ret);
108 return ret;
109}
110
111@end // wxPoserNSApplication
112WX_IMPLEMENT_POSER(wxPoserNSApplication);
113
114// ============================================================================
115// functions
116// ============================================================================
117
e2478fde 118void wxApp::Exit()
fb896a32 119{
fb896a32 120 wxApp::CleanUp();
e2478fde
VZ
121
122 wxAppConsole::Exit();
fb896a32
DE
123}
124
125// ============================================================================
126// wxApp implementation
127// ============================================================================
128
129// ----------------------------------------------------------------------------
130// wxApp Static member initialization
131// ----------------------------------------------------------------------------
fb896a32
DE
132
133#if !USE_SHARED_LIBRARY
134IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
135BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
955a9197 136 EVT_IDLE(wxAppBase::OnIdle)
fb896a32
DE
137// EVT_END_SESSION(wxApp::OnEndSession)
138// EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession)
139END_EVENT_TABLE()
140#endif
141
142// ----------------------------------------------------------------------------
05e2b077 143// wxApp initialization/cleanup
fb896a32 144// ----------------------------------------------------------------------------
94826170 145
05e2b077 146bool wxApp::Initialize(int& argc, wxChar **argv)
fb896a32 147{
47f1ad6a 148 wxAutoNSAutoreleasePool pool;
14fc7eb4 149 m_cocoaMainThread = [NSThread currentThread];
05e2b077
VZ
150 // Mac OS X passes a process serial number command line argument when
151 // the application is launched from the Finder. This argument must be
152 // removed from the command line arguments before being handled by the
153 // application (otherwise applications would need to handle it)
154 if ( argc > 1 )
155 {
156 static const wxChar *ARG_PSN = _T("-psn_");
157 if ( wxStrncmp(argv[1], ARG_PSN, sizeof(ARG_PSN) - 1) == 0 )
158 {
159 // remove this argument
160 memmove(argv, argv + 1, argc--);
161 }
162 }
163
28ce3086
DE
164 // Posing must be completed before any instances of the Objective-C
165 // classes being posed as are created.
fb896a32 166 wxPoseAsInitializer::InitializePosers();
fb896a32 167
94826170 168 return wxAppBase::Initialize(argc, argv);
fb896a32
DE
169}
170
94826170 171void wxApp::CleanUp()
fb896a32 172{
891d0563 173 wxDC::CocoaShutdownTextSystem();
af367f46 174 wxMenuBarManager::DestroyInstance();
94826170
VZ
175
176 wxAppBase::CleanUp();
fb896a32
DE
177}
178
179// ----------------------------------------------------------------------------
180// wxApp creation
181// ----------------------------------------------------------------------------
182
183wxApp::wxApp()
184{
185 m_topWindow = NULL;
fb896a32
DE
186
187 m_isIdle = true;
188#if WXWIN_COMPATIBILITY_2_2
189 m_wantDebugOutput = TRUE;
190#endif
b93d8cc4
DE
191#ifdef __WXDEBUG__
192 m_isInAssert = FALSE;
193#endif // __WXDEBUG__
194
fb896a32
DE
195
196 argc = 0;
197 argv = NULL;
198 m_cocoaApp = NULL;
199}
200
201void wxApp::CocoaInstallIdleHandler()
202{
14fc7eb4
DE
203 // If we're not the main thread, don't install the idle handler
204 if(m_cocoaMainThread != [NSThread currentThread])
205 {
206 wxLogDebug("Attempt to install idle handler from secondary thread");
207 return;
208 }
bc34fa26
DE
209 // If we're supposed to be stopping, don't add more idle events
210 if(![m_cocoaApp isRunning])
211 return;
fb896a32
DE
212 wxLogDebug("wxApp::CocoaInstallIdleHandler");
213 m_isIdle = false;
214 // Call doIdle for EVERYTHING dammit
215// We'd need Foundation/NSConnection.h for this next constant, do we need it?
216 [[ NSRunLoop currentRunLoop ] performSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL order:0 modes:[NSArray arrayWithObjects:NSDefaultRunLoopMode, /* NSConnectionReplyRunLoopMode,*/ NSModalPanelRunLoopMode, /**/NSEventTrackingRunLoopMode,/**/ nil] ];
217}
218
219bool wxApp::OnInitGui()
220{
47f1ad6a 221 wxAutoNSAutoreleasePool pool;
fb896a32
DE
222 if(!wxAppBase::OnInitGui())
223 return FALSE;
224
225 // Create the app using the sharedApplication method
226 m_cocoaApp = [NSApplication sharedApplication];
af367f46
DE
227
228 wxMenuBarManager::CreateInstance();
229
891d0563 230 wxDC::CocoaInitializeTextSystem();
fb896a32
DE
231// [ m_cocoaApp setDelegate:m_cocoaApp ];
232 #if 0
233 wxLogDebug("Just for kicks");
234 [ m_cocoaApp performSelector:@selector(doIdle:) withObject:NULL ];
235 wxLogDebug("okay.. done now");
236 #endif
237 return TRUE;
238}
239
47f1ad6a
DE
240bool wxApp::CallOnInit()
241{
bd3e8827 242// wxAutoNSAutoreleasePool pool;
47f1ad6a
DE
243 return OnInit();
244}
245
fb896a32
DE
246bool wxApp::OnInit()
247{
248 if(!wxAppBase::OnInit())
249 return FALSE;
250
251 return TRUE;
252}
253
254bool wxApp::Initialized()
255{
256 if (GetTopWindow())
257 return TRUE;
258 else
259 return FALSE;
260}
261
262int wxApp::MainLoop()
263{
264 [m_cocoaApp run];
265 return 0;
266}
267
fb896a32
DE
268void wxApp::ExitMainLoop()
269{
270 wxLogDebug("wxApp::ExitMailLoop m_isIdle=%d, isRunning=%d",(int)m_isIdle,(int)[m_cocoaApp isRunning]);
271// CocoaInstallRequestedIdleHandler();
272// if(m_isIdle)
273// [[ NSRunLoop currentRunLoop ] performSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL order:0 modes:[NSArray arrayWithObjects:NSDefaultRunLoopMode, /* NSConnectionReplyRunLoopMode, NSModalPanelRunLoopMode, NSEventTrackingRunLoopMode,*/ nil] ];
274// actually.. we WANT the idle event
275// or not
276#if 0
277 if(!m_isIdle)
278 [[ NSRunLoop currentRunLoop ] cancelPerformSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL];
279#endif
bc34fa26 280 [m_cocoaApp stop: m_cocoaApp];
fb896a32
DE
281}
282
283// Is a message/event pending?
284bool wxApp::Pending()
285{
286 return 0;
287}
288
289// Dispatch a message.
290void wxApp::Dispatch()
291{
292}
293
fb896a32
DE
294// Yield to other processes
295
296bool wxApp::Yield(bool onlyIfNeeded)
297{
298 // MT-FIXME
299 static bool s_inYield = false;
300
301#if wxUSE_LOG
302 // disable log flushing from here because a call to wxYield() shouldn't
303 // normally result in message boxes popping up &c
304 wxLog::Suspend();
305#endif // wxUSE_LOG
306
307 if (s_inYield)
308 {
309 if ( !onlyIfNeeded )
310 {
311 wxFAIL_MSG( wxT("wxYield called recursively" ) );
312 }
313
314 return false;
315 }
316
317 s_inYield = true;
318
319 wxLogDebug("WARNING: SUPPOSED to have yielded!");
320 // FIXME: Do something!
321
322#if wxUSE_LOG
323 // let the logs be flashed again
324 wxLog::Resume();
325#endif // wxUSE_LOG
326
327 s_inYield = false;
328
329 return true;
330}
331
b93d8cc4
DE
332#ifdef __WXDEBUG__
333void wxApp::OnAssert(const wxChar *file, int line, const wxChar* cond, const wxChar *msg)
334{
335 m_isInAssert = TRUE;
336 wxAppBase::OnAssert(file, line, cond, msg);
337 m_isInAssert = FALSE;
338}
339#endif // __WXDEBUG__
340