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