]>
Commit | Line | Data |
---|---|---|
7b466aee DE |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/cocoa/NSApplication.h | |
3 | // Purpose: wxNSApplicationDelegate definition | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2004/01/26 | |
7b466aee | 7 | // Copyright: (c) 2003,2004 David Elliott |
65571936 | 8 | // Licence: wxWindows licence |
7b466aee DE |
9 | /////////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _WX_COCOA_NSAPPLICATION_H__ | |
12 | #define _WX_COCOA_NSAPPLICATION_H__ | |
13 | ||
a24aa427 DE |
14 | #include "wx/cocoa/objc/objc_uniquifying.h" |
15 | ||
7b466aee DE |
16 | // ======================================================================== |
17 | // wxNSApplicationDelegate | |
18 | // ======================================================================== | |
047c1182 DE |
19 | /*! |
20 | @class wxNSApplicationDelegate | |
4c51a665 | 21 | @discussion Implements an NSApplication delegate which can respond to messages sent by Cocoa to change Cocoa's behaviour. |
047c1182 DE |
22 | |
23 | wxCocoa will set a singleton instance of this class as the NSApplication delegate upon startup unless wxWidgets is running | |
24 | in a "plugin" manner in which case it would not be appropriate to do this. | |
25 | ||
26 | Although Cocoa will send notifications to the delegate it is also possible to register a different object to listen for | |
27 | them. Because we want to support the plugin case, we use a separate notification observer object when we can. | |
28 | */ | |
7b466aee DE |
29 | @interface wxNSApplicationDelegate : NSObject |
30 | { | |
31 | } | |
32 | ||
33 | // Delegate methods | |
34 | - (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication; | |
047c1182 | 35 | @end // interface wxNSApplicationDelegate : NSObject |
a24aa427 | 36 | WX_DECLARE_GET_OBJC_CLASS(wxNSApplicationDelegate,NSObject) |
047c1182 DE |
37 | |
38 | // ======================================================================== | |
39 | // wxNSApplicationObserver | |
40 | // ======================================================================== | |
41 | /*! | |
42 | @class wxNSApplicationObserver | |
43 | @discussion Observes most notifications sent by the NSApplication singleton. | |
44 | ||
45 | wxCocoa will create a singleton instance of this class upon startup and register it with the default notification center to | |
46 | listen for several events sent by the NSApplication singleton. | |
47 | ||
48 | Because there can be any number of notification observers, this method allows wxCocoa to function properly even when it is | |
49 | running as a plugin of some other (most likely not wxWidgets) application. | |
50 | */ | |
51 | @interface wxNSApplicationObserver : NSObject | |
52 | { | |
53 | } | |
54 | ||
55 | // Methods defined as (but not used here) as NSApplication delegate methods. | |
7b466aee DE |
56 | - (void)applicationWillBecomeActive:(NSNotification *)notification; |
57 | - (void)applicationDidBecomeActive:(NSNotification *)notification; | |
58 | - (void)applicationWillResignActive:(NSNotification *)notification; | |
59 | - (void)applicationDidResignActive:(NSNotification *)notification; | |
047c1182 | 60 | - (void)applicationWillUpdate:(NSNotification *)notification; |
6fbcc6ca DE |
61 | |
62 | // Other notifications | |
63 | - (void)controlTintChanged:(NSNotification *)notification; | |
047c1182 | 64 | @end // interface wxNSApplicationObserver : NSObject |
a24aa427 | 65 | WX_DECLARE_GET_OBJC_CLASS(wxNSApplicationObserver,NSObject) |
7b466aee DE |
66 | |
67 | #endif //ndef _WX_COCOA_NSAPPLICATION_H__ |