]>
Commit | Line | Data |
---|---|---|
fb896a32 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/cocoa/menu.mm |
fb896a32 DE |
3 | // Purpose: wxMenu and wxMenuBar implementation |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2002/12/09 | |
fb896a32 | 7 | // Copyright: (c) 2002 David Elliott |
526954c5 | 8 | // Licence: wxWindows licence |
fb896a32 DE |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #include "wx/wxprec.h" | |
3b3dc801 WS |
20 | |
21 | #include "wx/menu.h" | |
22 | ||
fb896a32 | 23 | #ifndef WX_PRECOMP |
fb896a32 DE |
24 | #include "wx/log.h" |
25 | #endif // WX_PRECOMP | |
26 | ||
7fc77f30 | 27 | #include "wx/cocoa/autorelease.h" |
b0c0a393 | 28 | #include "wx/cocoa/string.h" |
7fc77f30 | 29 | |
fb896a32 | 30 | #import <Foundation/NSString.h> |
829a2e95 | 31 | #include "wx/cocoa/objc/NSMenu.h" |
fb896a32 DE |
32 | |
33 | #if wxUSE_MENUS | |
34 | ||
35 | // ---------------------------------------------------------------------------- | |
36 | // globals | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
39 | // ============================================================================ | |
40 | // wxMenu implementation | |
41 | // ============================================================================ | |
42 | ||
fb896a32 DE |
43 | bool wxMenu::Create(const wxString& title, long style) |
44 | { | |
605c7e7e | 45 | wxAutoNSAutoreleasePool pool; |
e7e1ad7d | 46 | m_cocoaNSMenu = [[WX_GET_OBJC_CLASS(WXNSMenu) alloc] initWithTitle: wxNSStringWithWxString(title)]; |
950432e4 | 47 | AssociateNSMenu(m_cocoaNSMenu); |
605c7e7e | 48 | return true; |
fb896a32 DE |
49 | } |
50 | ||
51 | wxMenu::~wxMenu() | |
52 | { | |
950432e4 DE |
53 | DisassociateNSMenu(m_cocoaNSMenu); |
54 | if(!m_cocoaDeletes) | |
55 | [m_cocoaNSMenu release]; | |
fb896a32 DE |
56 | } |
57 | ||
fe4a107d | 58 | wxMenuItem* wxMenu::DoAppend(wxMenuItem *item) |
fb896a32 | 59 | { |
7fc77f30 | 60 | wxAutoNSAutoreleasePool pool; |
fb896a32 | 61 | if(!wxMenuBase::DoAppend(item)) |
fe4a107d | 62 | return NULL; |
fb896a32 | 63 | [m_cocoaNSMenu addItem: item->GetNSMenuItem()]; |
fe4a107d | 64 | return item; |
fb896a32 DE |
65 | } |
66 | ||
fe4a107d | 67 | wxMenuItem* wxMenu::DoInsert(unsigned long pos, wxMenuItem *item) |
fb896a32 | 68 | { |
7fc77f30 | 69 | wxAutoNSAutoreleasePool pool; |
fb896a32 | 70 | if(!wxMenuBase::DoInsert(pos,item)) |
fe4a107d | 71 | return NULL; |
fb896a32 | 72 | [m_cocoaNSMenu insertItem:item->GetNSMenuItem() atIndex:pos]; |
fe4a107d | 73 | return item; |
fb896a32 DE |
74 | } |
75 | ||
76 | wxMenuItem* wxMenu::DoRemove(wxMenuItem *item) | |
77 | { | |
7fc77f30 | 78 | wxAutoNSAutoreleasePool pool; |
fb896a32 DE |
79 | wxMenuItem *retitem = wxMenuBase::DoRemove(item); |
80 | wxASSERT(retitem->GetNSMenuItem()); | |
81 | [m_cocoaNSMenu removeItem:retitem->GetNSMenuItem()]; | |
82 | return retitem; | |
83 | } | |
84 | ||
950432e4 DE |
85 | // This autoreleases the menu on the assumption that something is |
86 | // going to retain it shortly (for instance, it is going to be returned from | |
87 | // an overloaded [NSStatusItem menu] or from the applicationDockMenu: | |
88 | // NSApplication delegate method. | |
89 | // | |
90 | // It then sets a bool flag m_cocoaDeletes. When the NSMenu is dealloc'd | |
91 | // (dealloc is the Cocoa destructor) we delete ourselves. In this manner we | |
92 | // can be available for Cocoa calls until Cocoa is finished with us. | |
93 | // | |
94 | // I can see very few reasons to undo this. Nevertheless, it is implemented. | |
95 | void wxMenu::SetCocoaDeletes(bool cocoaDeletes) | |
96 | { | |
97 | if(m_cocoaDeletes==cocoaDeletes) | |
98 | return; | |
99 | m_cocoaDeletes = cocoaDeletes; | |
100 | if(m_cocoaDeletes) | |
101 | [m_cocoaNSMenu autorelease]; | |
102 | else | |
103 | [m_cocoaNSMenu retain]; | |
104 | } | |
105 | ||
106 | void wxMenu::Cocoa_dealloc() | |
107 | { | |
108 | if(m_cocoaDeletes) | |
109 | delete this; | |
110 | } | |
111 | ||
fb896a32 DE |
112 | // ============================================================================ |
113 | // wxMenuBar implementation | |
114 | // ============================================================================ | |
fb896a32 DE |
115 | |
116 | bool wxMenuBar::Create(long style) | |
117 | { | |
605c7e7e DE |
118 | wxAutoNSAutoreleasePool pool; |
119 | m_cocoaNSMenu = [[NSMenu alloc] initWithTitle: @"wxMenuBar"]; | |
120 | ||
97351e17 DE |
121 | NSMenuItem *dummyItem = [[NSMenuItem alloc] initWithTitle:@"App menu" |
122 | /* Note: title gets clobbered by app name anyway */ | |
123 | action:nil keyEquivalent:@""]; | |
124 | [m_cocoaNSMenu addItem:dummyItem]; | |
125 | [dummyItem release]; | |
fb896a32 DE |
126 | return true; |
127 | } | |
128 | ||
3b880f29 VZ |
129 | wxMenuBar::wxMenuBar(size_t n, |
130 | wxMenu *menus[], | |
131 | const wxString titles[], | |
132 | long style) | |
294ea16d VZ |
133 | { |
134 | Create(style); | |
135 | ||
3b880f29 | 136 | for ( size_t i = 0; i < n; ++i ) |
294ea16d VZ |
137 | Append(menus[i], titles[i]); |
138 | } | |
139 | ||
fb896a32 DE |
140 | wxMenuBar::~wxMenuBar() |
141 | { | |
605c7e7e | 142 | [m_cocoaNSMenu release]; |
fb896a32 DE |
143 | } |
144 | ||
145 | bool wxMenuBar::Append( wxMenu *menu, const wxString &title ) | |
146 | { | |
7fc77f30 | 147 | wxAutoNSAutoreleasePool pool; |
48580976 | 148 | wxLogTrace(wxTRACE_COCOA,wxT("append menu=%p, title=%s"),menu,title.c_str()); |
fb896a32 DE |
149 | if(!wxMenuBarBase::Append(menu,title)) |
150 | return false; | |
151 | wxASSERT(menu); | |
152 | wxASSERT(menu->GetNSMenu()); | |
b0c0a393 | 153 | NSString *menuTitle = wxInitNSStringWithWxString([NSString alloc], wxStripMenuCodes(title)); |
fb896a32 DE |
154 | NSMenuItem *newItem = [[NSMenuItem alloc] initWithTitle:menuTitle action:NULL keyEquivalent:@""]; |
155 | [menu->GetNSMenu() setTitle:menuTitle]; | |
156 | [newItem setSubmenu:menu->GetNSMenu()]; | |
157 | ||
158 | [m_cocoaNSMenu addItem:newItem]; | |
159 | ||
160 | [menuTitle release]; | |
161 | [newItem release]; | |
162 | return true; | |
163 | } | |
164 | ||
165 | bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title) | |
166 | { | |
7fc77f30 | 167 | wxAutoNSAutoreleasePool pool; |
48580976 | 168 | wxLogTrace(wxTRACE_COCOA,wxT("insert pos=%lu, menu=%p, title=%s"),pos,menu,title.c_str()); |
97351e17 DE |
169 | // Get the current menu at this position |
170 | wxMenu *nextmenu = GetMenu(pos); | |
fb896a32 DE |
171 | if(!wxMenuBarBase::Insert(pos,menu,title)) |
172 | return false; | |
173 | wxASSERT(menu); | |
174 | wxASSERT(menu->GetNSMenu()); | |
b0c0a393 | 175 | NSString *menuTitle = wxInitNSStringWithWxString([NSString alloc], title); |
fb896a32 DE |
176 | NSMenuItem *newItem = [[NSMenuItem alloc] initWithTitle:menuTitle action:NULL keyEquivalent:@""]; |
177 | [menu->GetNSMenu() setTitle:menuTitle]; | |
178 | [newItem setSubmenu:menu->GetNSMenu()]; | |
179 | ||
97351e17 DE |
180 | int itemindex = [m_cocoaNSMenu indexOfItemWithSubmenu:nextmenu->GetNSMenu()]; |
181 | wxASSERT(itemindex>=0); | |
182 | [m_cocoaNSMenu insertItem:newItem atIndex:itemindex]; | |
fb896a32 DE |
183 | |
184 | [menuTitle release]; | |
185 | [newItem release]; | |
186 | return true; | |
187 | } | |
188 | ||
189 | wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title) | |
190 | { | |
191 | return NULL; | |
192 | } | |
193 | ||
194 | wxMenu *wxMenuBar::Remove(size_t pos) | |
195 | { | |
97351e17 DE |
196 | wxMenu *menu = wxMenuBarBase::Remove(pos); |
197 | wxASSERT(menu); | |
198 | int itemindex = [GetNSMenu() indexOfItemWithSubmenu:menu->GetNSMenu()]; | |
199 | wxASSERT(itemindex>=0); | |
200 | [m_cocoaNSMenu removeItemAtIndex:itemindex]; | |
201 | return menu; | |
fb896a32 DE |
202 | } |
203 | ||
204 | ||
205 | void wxMenuBar::EnableTop(size_t pos, bool enable) | |
206 | { | |
207 | } | |
208 | ||
209 | bool wxMenuBar::IsEnabledTop(size_t pos) const | |
210 | { | |
211 | return false; | |
212 | } | |
213 | ||
52af3158 | 214 | void wxMenuBar::SetMenuLabel(size_t pos, const wxString& label) |
fb896a32 DE |
215 | { |
216 | } | |
217 | ||
52af3158 | 218 | wxString wxMenuBar::GetMenuLabel(size_t pos) const |
fb896a32 | 219 | { |
97351e17 DE |
220 | wxMenu *menu = GetMenu(pos); |
221 | int itemindex = [m_cocoaNSMenu indexOfItemWithSubmenu:menu->GetNSMenu()]; | |
222 | wxASSERT(itemindex>=0); | |
b0c0a393 | 223 | return wxStringWithNSString([[m_cocoaNSMenu itemAtIndex:itemindex] title]); |
fb896a32 DE |
224 | } |
225 | ||
226 | void wxMenuBar::Attach(wxFrame *frame) | |
227 | { | |
2fc2d511 | 228 | wxMenuBarBase::Attach(frame); |
fb896a32 DE |
229 | } |
230 | ||
231 | void wxMenuBar::Detach() | |
232 | { | |
2fc2d511 | 233 | wxMenuBarBase::Detach(); |
fb896a32 DE |
234 | } |
235 | ||
236 | wxSize wxMenuBar::DoGetBestClientSize() const | |
237 | { | |
238 | return wxDefaultSize; | |
239 | } | |
240 | ||
241 | #endif // wxUSE_MENUS |