]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/NSMenu.mm
Compilationf fixes according to patch #1828105.
[wxWidgets.git] / src / cocoa / NSMenu.mm
CommitLineData
fb896a32
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: cocoa/NSMenu.mm
3// Purpose: wxCocoaNSMenu implementation
4// Author: David Elliott
5// Modified by:
6// Created: 2002/12/09
605c7e7e 7// RCS-ID: $Id$
fb896a32 8// Copyright: (c) 2002 David Elliott
065e208e 9// Licence: wxWidgets licence
fb896a32
DE
10/////////////////////////////////////////////////////////////////////////////
11
fb896a32 12#include "wx/wxprec.h"
605c7e7e 13#if wxUSE_MENUS
fb896a32
DE
14#ifndef WX_PRECOMP
15 #include "wx/log.h"
16#endif // WX_PRECOMP
17
18#include "wx/cocoa/NSMenu.h"
fb896a32 19
bcf01487 20#import <Foundation/NSNotification.h>
ad3628fa 21#include "wx/cocoa/objc/NSMenu.h"
bcf01487 22
fb896a32 23// ============================================================================
829a2e95 24// @class WXNSMenu
fb896a32 25// ============================================================================
fb896a32 26
829a2e95 27@implementation WXNSMenu : NSMenu
fb896a32 28
3312496d
DE
29- (void)dealloc
30{
31 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa(self);
32 if(menu)
33 menu->Cocoa_dealloc();
9a7247f0 34 [super dealloc];
3312496d
DE
35}
36
829a2e95 37@end // WXNSMenu
e7e1ad7d 38WX_IMPLEMENT_GET_OBJC_CLASS(WXNSMenu,NSMenu)
fb896a32 39
bcf01487
DE
40// ============================================================================
41// @class wxNSMenuNotificationObserver
42// ============================================================================
43@interface wxNSMenuNotificationObserver : NSObject
44{
45}
46
bcf01487
DE
47- (void)menuDidAddItem: (NSNotification *)notification;
48- (void)menuDidChangeItem: (NSNotification *)notification;
49- (void)menuDidRemoveItem: (NSNotification *)notification;
50- (void)menuDidSendAction: (NSNotification *)notification;
51- (void)menuWillSendAction: (NSNotification *)notification;
52@end // interface wxNSMenuNotificationObserver
e7e1ad7d 53WX_DECLARE_GET_OBJC_CLASS(wxNSMenuNotificationObserver,NSObject)
bcf01487
DE
54
55@implementation wxNSMenuNotificationObserver : NSObject
56
57- (void)menuDidAddItem: (NSNotification *)notification
58{
59 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa([notification object]);
2b030203 60 wxCHECK_RET(menu,wxT("menuDidAddItem received but no wxMenu exists"));
bcf01487
DE
61 menu->CocoaNotification_menuDidAddItem(notification);
62}
63
64- (void)menuDidChangeItem: (NSNotification *)notification
65{
66 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa([notification object]);
2b030203 67 wxCHECK_RET(menu,wxT("menuDidChangeItem received but no wxMenu exists"));
bcf01487
DE
68 menu->CocoaNotification_menuDidChangeItem(notification);
69}
70
71- (void)menuDidRemoveItem: (NSNotification *)notification
72{
73 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa([notification object]);
2b030203 74 wxCHECK_RET(menu,wxT("menuDidRemoveItem received but no wxMenu exists"));
bcf01487
DE
75 menu->CocoaNotification_menuDidRemoveItem(notification);
76}
77
78- (void)menuDidSendAction: (NSNotification *)notification
79{
80 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa([notification object]);
2b030203 81 wxCHECK_RET(menu,wxT("menuDidSendAction received but no wxMenu exists"));
bcf01487
DE
82 menu->CocoaNotification_menuDidSendAction(notification);
83}
84
85- (void)menuWillSendAction: (NSNotification *)notification
86{
87 wxCocoaNSMenu *menu = wxCocoaNSMenu::GetFromCocoa([notification object]);
2b030203 88 wxCHECK_RET(menu,wxT("menuWillSendAction received but no wxMenu exists"));
bcf01487
DE
89 menu->CocoaNotification_menuWillSendAction(notification);
90}
91
92@end // implementation wxNSMenuNotificationObserver
e7e1ad7d 93WX_IMPLEMENT_GET_OBJC_CLASS(wxNSMenuNotificationObserver,NSObject)
bcf01487
DE
94
95// ========================================================================
96// wxCocoaNSMenu
97// ========================================================================
bc8eaeb3
DE
98WX_IMPLEMENT_OBJC_INTERFACE_HASHMAP(NSMenu)
99
e7e1ad7d
DE
100struct objc_object *wxCocoaNSMenu::sm_cocoaObserver = [[WX_GET_OBJC_CLASS(wxNSMenuNotificationObserver) alloc] init];
101
bcf01487
DE
102void wxCocoaNSMenu::AssociateNSMenu(WX_NSMenu cocoaNSMenu, unsigned int flags)
103{
104 if(cocoaNSMenu)
105 {
106 sm_cocoaHash.insert(wxCocoaNSMenuHash::value_type(cocoaNSMenu,this));
107 if(flags&OBSERVE_DidAddItem)
108 [[NSNotificationCenter defaultCenter] addObserver:(id)sm_cocoaObserver selector:@selector(menuDidAddItem:) name:NSMenuDidAddItemNotification object:cocoaNSMenu];
109 if(flags&OBSERVE_DidChangeItem)
110 [[NSNotificationCenter defaultCenter] addObserver:(id)sm_cocoaObserver selector:@selector(menuDidChangeItem:) name:NSMenuDidChangeItemNotification object:cocoaNSMenu];
111 if(flags&OBSERVE_DidRemoveItem)
112 [[NSNotificationCenter defaultCenter] addObserver:(id)sm_cocoaObserver selector:@selector(menuDidRemoveItem:) name:NSMenuDidRemoveItemNotification object:cocoaNSMenu];
113 if(flags&OBSERVE_DidSendAction)
114 [[NSNotificationCenter defaultCenter] addObserver:(id)sm_cocoaObserver selector:@selector(menuDidSendAction:) name:NSMenuDidSendActionNotification object:cocoaNSMenu];
115 if(flags&OBSERVE_WillSendAction)
116 [[NSNotificationCenter defaultCenter] addObserver:(id)sm_cocoaObserver selector:@selector(menuWillSendAction:) name:NSMenuWillSendActionNotification object:cocoaNSMenu];
117 }
118}
119
120void wxCocoaNSMenu::DisassociateNSMenu(WX_NSMenu cocoaNSMenu)
121{
122 if(cocoaNSMenu)
123 {
124 sm_cocoaHash.erase(cocoaNSMenu);
125 [[NSNotificationCenter defaultCenter] removeObserver:(id)sm_cocoaObserver name:NSMenuDidAddItemNotification object:cocoaNSMenu];
126 [[NSNotificationCenter defaultCenter] removeObserver:(id)sm_cocoaObserver name:NSMenuDidChangeItemNotification object:cocoaNSMenu];
127 [[NSNotificationCenter defaultCenter] removeObserver:(id)sm_cocoaObserver name:NSMenuDidRemoveItemNotification object:cocoaNSMenu];
128 [[NSNotificationCenter defaultCenter] removeObserver:(id)sm_cocoaObserver name:NSMenuDidSendActionNotification object:cocoaNSMenu];
129 [[NSNotificationCenter defaultCenter] removeObserver:(id)sm_cocoaObserver name:NSMenuWillSendActionNotification object:cocoaNSMenu];
130 }
131}
132
fb896a32 133#endif // wxUSE_MENUS