1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Elliott
8 // Copyright: (c) David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/wxprec.h"
25 #include "wx/dialog.h"
31 #include "wx/module.h"
33 #include "wx/cocoa/ObjcPose.h"
35 #if wxUSE_WX_RESOURCES
36 # include "wx/resource.h"
39 #import <AppKit/NSApplication.h>
40 #import <Foundation/NSRunLoop.h>
41 #import <Foundation/NSArray.h>
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 wxPoseAsInitializer *wxPoseAsInitializer::sm_first = NULL;
49 @interface wxPoserNSApplication : NSApplication
53 - (void)doIdle: (id)data;
54 - (void)finishLaunching;
55 - (void)sendEvent: (NSEvent*)anEvent;
56 - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication;
57 @end // wxPoserNSApplication
59 @implementation wxPoserNSApplication : NSApplication
61 - (void)doIdle: (id)data
64 wxLogDebug("doIdle called");
65 NSRunLoop *rl = [NSRunLoop currentRunLoop];
66 // runMode: beforeDate returns YES if something was done
67 while(wxTheApp->ProcessIdle()) // FIXME: AND NO EVENTS ARE PENDING
69 wxLogDebug("Looping for idle events");
71 if( [rl runMode:[rl currentMode] beforeDate:[NSDate distantPast]])
73 wxLogDebug("Found actual work to do");
78 wxLogDebug("Idle processing complete, requesting next idle event");
79 // Add ourself back into the run loop (on next event) if necessary
80 wxTheApp->CocoaRequestIdle();
83 - (void)finishLaunching
85 wxLogDebug("finishLaunching");
86 bool initsuccess = wxTheApp->OnInit();
90 [super finishLaunching];
93 - (void)sendEvent: (NSEvent*)anEvent
95 wxLogDebug("SendEvent");
96 wxTheApp->CocoaInstallRequestedIdleHandler();
97 [super sendEvent: anEvent];
100 - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
102 BOOL ret = wxTheApp->GetExitOnFrameDelete();
103 wxLogDebug("applicationShouldTermintaeAfterLastWindowClosed=%d",ret);
107 @end // wxPoserNSApplication
108 WX_IMPLEMENT_POSER(wxPoserNSApplication);
110 // ============================================================================
112 // ============================================================================
118 wxAppConsole::Exit();
121 // ============================================================================
122 // wxApp implementation
123 // ============================================================================
125 // ----------------------------------------------------------------------------
126 // wxApp Static member initialization
127 // ----------------------------------------------------------------------------
129 #if !USE_SHARED_LIBRARY
130 IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
131 BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
132 EVT_IDLE(wxApp::OnIdle)
133 // EVT_END_SESSION(wxApp::OnEndSession)
134 // EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession)
138 // ----------------------------------------------------------------------------
139 // wxApp initialization/cleanup
140 // ----------------------------------------------------------------------------
142 bool wxApp::Initialize(int& argc, wxChar **argv)
144 // Mac OS X passes a process serial number command line argument when
145 // the application is launched from the Finder. This argument must be
146 // removed from the command line arguments before being handled by the
147 // application (otherwise applications would need to handle it)
150 static const wxChar *ARG_PSN = _T("-psn_");
151 if ( wxStrncmp(argv[1], ARG_PSN, sizeof(ARG_PSN) - 1) == 0 )
153 // remove this argument
154 memmove(argv, argv + 1, argc--);
158 // VZ: apparently this needs to be done a.s.a.p., right? it is done after
159 // wxClassInfo::InitializeClasses() now but usd to be done before, I
160 // hope it's not a problem -- if it is, please let me know, David (if
161 // it isn't, just remove this comment :-)
162 wxPoseAsInitializer::InitializePosers();
164 return wxAppBase::Initialize(argc, argv);
167 void wxApp::CleanUp()
169 wxDC::CocoaShutdownTextSystem();
171 wxAppBase::CleanUp();
174 // ----------------------------------------------------------------------------
176 // ----------------------------------------------------------------------------
184 #if WXWIN_COMPATIBILITY_2_2
185 m_wantDebugOutput = TRUE;
193 void wxApp::CocoaInstallIdleHandler()
195 wxLogDebug("wxApp::CocoaInstallIdleHandler");
197 // Call doIdle for EVERYTHING dammit
198 // We'd need Foundation/NSConnection.h for this next constant, do we need it?
199 [[ NSRunLoop currentRunLoop ] performSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL order:0 modes:[NSArray arrayWithObjects:NSDefaultRunLoopMode, /* NSConnectionReplyRunLoopMode,*/ NSModalPanelRunLoopMode, /**/NSEventTrackingRunLoopMode,/**/ nil] ];
202 bool wxApp::OnInitGui()
204 if(!wxAppBase::OnInitGui())
207 // Create the app using the sharedApplication method
208 m_cocoaApp = [NSApplication sharedApplication];
209 wxDC::CocoaInitializeTextSystem();
210 // [ m_cocoaApp setDelegate:m_cocoaApp ];
212 wxLogDebug("Just for kicks");
213 [ m_cocoaApp performSelector:@selector(doIdle:) withObject:NULL ];
214 wxLogDebug("okay.. done now");
221 if(!wxAppBase::OnInit())
227 bool wxApp::Initialized()
235 int wxApp::MainLoop()
241 // Returns TRUE if more time is needed.
242 bool wxApp::ProcessIdle()
245 event.SetEventObject(this);
248 return event.MoreRequested();
251 void wxApp::ExitMainLoop()
253 wxLogDebug("wxApp::ExitMailLoop m_isIdle=%d, isRunning=%d",(int)m_isIdle,(int)[m_cocoaApp isRunning]);
254 // CocoaInstallRequestedIdleHandler();
256 // [[ NSRunLoop currentRunLoop ] performSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL order:0 modes:[NSArray arrayWithObjects:NSDefaultRunLoopMode, /* NSConnectionReplyRunLoopMode, NSModalPanelRunLoopMode, NSEventTrackingRunLoopMode,*/ nil] ];
257 // actually.. we WANT the idle event
261 [[ NSRunLoop currentRunLoop ] cancelPerformSelector:@selector(doIdle:) target:m_cocoaApp argument:NULL];
263 [m_cocoaApp terminate: m_cocoaApp];
266 // Is a message/event pending?
267 bool wxApp::Pending()
272 // Dispatch a message.
273 void wxApp::Dispatch()
277 void wxApp::OnIdle(wxIdleEvent& event)
279 wxLogDebug("wxApp::OnIdle");
280 static bool s_inOnIdle = FALSE;
282 // Avoid recursion (via ProcessEvent default case)
288 DeletePendingObjects();
290 // flush the logged messages if any
291 wxLog *pLog = wxLog::GetActiveTarget();
292 if ( pLog != NULL && pLog->HasPendingMessages() )
295 // Send OnIdle events to all windows
296 bool needMore = SendIdleEvents();
299 event.RequestMore(TRUE);
304 // Send idle event to all top-level windows
305 bool wxApp::SendIdleEvents()
307 bool needMore = FALSE;
308 wxWindowList::Node* node = wxTopLevelWindows.GetFirst();
311 wxWindow* win = node->GetData();
312 if (SendIdleEvents(win))
315 node = node->GetNext();
320 // Send idle event to window and all subwindows
321 bool wxApp::SendIdleEvents(wxWindow* win)
323 // wxLogDebug("SendIdleEvents win=%p",win);
324 bool needMore = FALSE;
327 event.SetEventObject(win);
328 win->ProcessEvent(event);
330 if (event.MoreRequested())
333 wxWindowList::Node* node = win->GetChildren().GetFirst();
336 // wxLogDebug("child=%p",node->Data());
337 wxWindow* win = node->GetData();
338 if (SendIdleEvents(win))
341 node = node->GetNext();
346 // Yield to other processes
348 bool wxApp::Yield(bool onlyIfNeeded)
351 static bool s_inYield = false;
354 // disable log flushing from here because a call to wxYield() shouldn't
355 // normally result in message boxes popping up &c
363 wxFAIL_MSG( wxT("wxYield called recursively" ) );
371 wxLogDebug("WARNING: SUPPOSED to have yielded!");
372 // FIXME: Do something!
375 // let the logs be flashed again