1 /////////////////////////////////////////////////////////////////////////////
4 // Author: David Elliott
8 // Copyright: (c) David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
21 #include "wx/module.h"
23 #include "wx/cocoa/ObjcPose.h"
24 #include "wx/cocoa/autorelease.h"
25 #include "wx/cocoa/mbarman.h"
26 #include "wx/cocoa/NSApplication.h"
28 #if wxUSE_WX_RESOURCES
29 # include "wx/resource.h"
32 #import <AppKit/NSApplication.h>
33 #import <Foundation/NSRunLoop.h>
34 #import <Foundation/NSThread.h>
35 #import <AppKit/NSEvent.h>
36 #import <Foundation/NSString.h>
37 #import <Foundation/NSNotification.h>
38 #import <AppKit/NSCell.h>
40 // ========================================================================
41 // wxPoseAsInitializer
42 // ========================================================================
43 wxPoseAsInitializer *wxPoseAsInitializer::sm_first = NULL;
45 static bool sg_needIdle = true;
47 // ========================================================================
48 // wxPoserNSApplication
49 // ========================================================================
50 @interface wxPoserNSApplication : NSApplication
54 - (NSEvent *)nextEventMatchingMask:(unsigned int)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)flag;
55 - (void)sendEvent: (NSEvent*)anEvent;
56 @end // wxPoserNSApplication
58 WX_IMPLEMENT_POSER(wxPoserNSApplication);
60 @implementation wxPoserNSApplication : NSApplication
62 /* NOTE: The old method of idle event handling added the handler using the
63 [NSRunLoop -performSelector:target:argument:order:modes] which caused
64 the invocation to occur at the begining of [NSApplication
65 -nextEventMatchingMask:untilDate:expiration:inMode:dequeue:]. However,
66 the code would be scheduled for invocation with every iteration of
67 the event loop. This new method simply overrides the method. The
68 same caveats apply. In particular, by the time the event loop has
69 called this method, it usually expects to receive an event. If you
70 plan on stopping the event loop, it is wise to send an event through
71 the queue to ensure this method will return.
72 See wxEventLoop::Exit() for more information.
75 - (NSEvent *)nextEventMatchingMask:(unsigned int)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)flag
77 // Get the same events except don't block
78 NSEvent *event = [super nextEventMatchingMask:mask untilDate:nil/* equivalent to [NSDate distantPast] */ inMode:mode dequeue:flag];
79 // If we got one, simply return it
82 // No events, try doing some idle stuff
85 && !wxTheApp->IsInAssert()
87 && ([NSDefaultRunLoopMode isEqualToString:mode] || [NSModalPanelRunLoopMode isEqualToString:mode]))
90 wxLogTrace(wxTRACE_COCOA,wxT("Processing idle events"));
91 while(wxTheApp->ProcessIdle())
93 // Get the same events except don't block
94 NSEvent *event = [super nextEventMatchingMask:mask untilDate:nil/* equivalent to [NSDate distantPast] */ inMode:mode dequeue:flag];
95 // If we got one, simply return it
98 // we didn't get one, do some idle work
99 wxLogTrace(wxTRACE_COCOA,wxT("Looping idle events"));
101 // No more idle work requested, block
102 wxLogTrace(wxTRACE_COCOA,wxT("Finished idle processing"));
105 wxLogTrace(wxTRACE_COCOA,wxT("Avoiding idle processing sg_needIdle=%d"),sg_needIdle);
106 return [super nextEventMatchingMask:mask untilDate:expiration inMode:mode dequeue:flag];
109 - (void)sendEvent: (NSEvent*)anEvent
111 wxLogTrace(wxTRACE_COCOA,wxT("SendEvent"));
113 [super sendEvent: anEvent];
116 @end // wxPoserNSApplication
118 // ========================================================================
119 // wxNSApplicationDelegate
120 // ========================================================================
121 @implementation wxNSApplicationDelegate : NSObject
123 // NOTE: Terminate means that the event loop does NOT return and thus
124 // cleanup code doesn't properly execute. Furthermore, wxWidgets has its
125 // own exit on frame delete mechanism.
126 - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
131 - (void)applicationWillBecomeActive:(NSNotification *)notification
133 wxTheApp->CocoaDelegate_applicationWillBecomeActive();
136 - (void)applicationDidBecomeActive:(NSNotification *)notification
138 wxTheApp->CocoaDelegate_applicationDidBecomeActive();
141 - (void)applicationWillResignActive:(NSNotification *)notification
143 wxTheApp->CocoaDelegate_applicationWillResignActive();
146 - (void)applicationDidResignActive:(NSNotification *)notification
148 wxTheApp->CocoaDelegate_applicationDidResignActive();
151 - (void)controlTintChanged:(NSNotification *)notification
153 wxLogDebug("TODO: send EVT_SYS_COLOUR_CHANGED as appropriate");
156 @end // implementation wxNSApplicationDelegate : NSObject
158 // ========================================================================
160 // ========================================================================
162 // ----------------------------------------------------------------------------
163 // wxApp Static member initialization
164 // ----------------------------------------------------------------------------
165 IMPLEMENT_DYNAMIC_CLASS(wxApp, wxEvtHandler)
166 BEGIN_EVENT_TABLE(wxApp, wxEvtHandler)
167 EVT_IDLE(wxAppBase::OnIdle)
168 // EVT_END_SESSION(wxApp::OnEndSession)
169 // EVT_QUERY_END_SESSION(wxApp::OnQueryEndSession)
172 // ----------------------------------------------------------------------------
173 // wxApp initialization/cleanup
174 // ----------------------------------------------------------------------------
175 bool wxApp::Initialize(int& argc, wxChar **argv)
177 wxAutoNSAutoreleasePool pool;
178 m_cocoaMainThread = [NSThread currentThread];
179 // Mac OS X passes a process serial number command line argument when
180 // the application is launched from the Finder. This argument must be
181 // removed from the command line arguments before being handled by the
182 // application (otherwise applications would need to handle it)
185 static const wxChar *ARG_PSN = _T("-psn_");
186 if ( wxStrncmp(argv[1], ARG_PSN, wxStrlen(ARG_PSN)) == 0 )
188 // remove this argument
190 memmove(argv + 1, argv + 2, argc * sizeof(wxChar *));
194 // Posing must be completed before any instances of the Objective-C
195 // classes being posed as are created.
196 wxPoseAsInitializer::InitializePosers();
198 return wxAppBase::Initialize(argc, argv);
201 void wxApp::CleanUp()
203 wxAutoNSAutoreleasePool pool;
205 wxDC::CocoaShutdownTextSystem();
206 wxMenuBarManager::DestroyInstance();
208 [m_cocoaApp setDelegate:nil];
209 [[NSNotificationCenter defaultCenter] removeObserver:m_cocoaAppDelegate
210 name:NSControlTintDidChangeNotification object:nil];
211 [m_cocoaAppDelegate release];
212 m_cocoaAppDelegate = NULL;
214 wxAppBase::CleanUp();
217 // ----------------------------------------------------------------------------
219 // ----------------------------------------------------------------------------
224 #if WXWIN_COMPATIBILITY_2_2
225 m_wantDebugOutput = TRUE;
228 m_isInAssert = FALSE;
229 #endif // __WXDEBUG__
234 m_cocoaAppDelegate = NULL;
237 void wxApp::CocoaDelegate_applicationWillBecomeActive()
241 void wxApp::CocoaDelegate_applicationDidBecomeActive()
245 void wxApp::CocoaDelegate_applicationWillResignActive()
247 wxTopLevelWindowCocoa::DeactivatePendingWindow();
250 void wxApp::CocoaDelegate_applicationDidResignActive()
254 bool wxApp::OnInitGui()
256 wxAutoNSAutoreleasePool pool;
257 if(!wxAppBase::OnInitGui())
260 // Create the app using the sharedApplication method
261 m_cocoaApp = [NSApplication sharedApplication];
262 m_cocoaAppDelegate = [[wxNSApplicationDelegate alloc] init];
263 [m_cocoaApp setDelegate:m_cocoaAppDelegate];
264 [[NSNotificationCenter defaultCenter] addObserver:m_cocoaAppDelegate
265 selector:@selector(controlTintChanged:)
266 name:NSControlTintDidChangeNotification object:nil];
268 wxMenuBarManager::CreateInstance();
270 wxDC::CocoaInitializeTextSystem();
274 bool wxApp::CallOnInit()
276 // wxAutoNSAutoreleasePool pool;
282 if(!wxAppBase::OnInit())
292 wxAppConsole::Exit();
295 // Yield to other processes
296 bool wxApp::Yield(bool onlyIfNeeded)
299 static bool s_inYield = false;
302 // disable log flushing from here because a call to wxYield() shouldn't
303 // normally result in message boxes popping up &c
311 wxFAIL_MSG( wxT("wxYield called recursively" ) );
319 // Run the event loop until it is out of events
322 wxAutoNSAutoreleasePool pool;
323 NSEvent *event = [GetNSApplication()
324 nextEventMatchingMask:NSAnyEventMask
325 untilDate:nil /* ==[NSDate distantPast] */
326 inMode:NSDefaultRunLoopMode
330 [GetNSApplication() sendEvent: event];
334 // let the logs be flashed again
343 void wxApp::WakeUpIdle()
345 [m_cocoaApp postEvent:[NSEvent otherEventWithType:NSApplicationDefined
346 location:NSZeroPoint modifierFlags:NSAnyEventMask
347 timestamp:0 windowNumber:0 context:nil
348 subtype:0 data1:0 data2:0] atStart:NO];
352 void wxApp::OnAssert(const wxChar *file, int line, const wxChar* cond, const wxChar *msg)
355 wxAppBase::OnAssert(file, line, cond, msg);
356 m_isInAssert = FALSE;
358 #endif // __WXDEBUG__