]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/osx/cocoa/menu.mm | |
3 | // Purpose: wxMenu, wxMenuBar, wxMenuItem | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id: menu.cpp 54129 2008-06-11 19:30:52Z SC $ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // headers & declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // wxWidgets headers | |
17 | // ----------------- | |
18 | ||
19 | #include "wx/wxprec.h" | |
20 | ||
21 | #include "wx/menu.h" | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/log.h" | |
25 | #include "wx/app.h" | |
26 | #include "wx/utils.h" | |
27 | #include "wx/frame.h" | |
28 | #include "wx/menuitem.h" | |
29 | #endif | |
30 | ||
31 | #include "wx/osx/private.h" | |
32 | ||
33 | // other standard headers | |
34 | // ---------------------- | |
35 | #include <string.h> | |
36 | ||
37 | @implementation wxNSMenu | |
38 | ||
39 | - (id) initWithTitle:(NSString*) title | |
40 | { | |
41 | [super initWithTitle:title]; | |
42 | impl = NULL; | |
43 | return self; | |
44 | } | |
45 | ||
46 | - (void)setImplementation: (wxMenuImpl *) theImplementation | |
47 | { | |
48 | impl = theImplementation; | |
49 | } | |
50 | ||
51 | - (wxMenuImpl*) implementation | |
52 | { | |
53 | return impl; | |
54 | } | |
55 | ||
56 | @end | |
57 | ||
58 | @interface wxNSMenuController : NSObject wxOSX_10_6_AND_LATER(<NSMenuDelegate>) | |
59 | { | |
60 | } | |
61 | ||
62 | - (void)menuWillOpen:(NSMenu *)menu; | |
63 | - (void)menuDidClose:(NSMenu *)menu; | |
64 | - (void)menu:(NSMenu *)menu willHighlightItem:(NSMenuItem *)item; | |
65 | ||
66 | @end | |
67 | ||
68 | @implementation wxNSMenuController | |
69 | ||
70 | - (id) init | |
71 | { | |
72 | [super init]; | |
73 | return self; | |
74 | } | |
75 | ||
76 | - (void)menuWillOpen:(NSMenu *)smenu | |
77 | { | |
78 | wxNSMenu* menu = (wxNSMenu*) smenu; | |
79 | wxMenuImpl* menuimpl = [menu implementation]; | |
80 | if ( menuimpl ) | |
81 | { | |
82 | wxMenu* wxpeer = (wxMenu*) menuimpl->GetWXPeer(); | |
83 | if ( wxpeer ) | |
84 | wxpeer->HandleMenuOpened(); | |
85 | } | |
86 | } | |
87 | ||
88 | - (void)menuDidClose:(NSMenu *)smenu | |
89 | { | |
90 | wxNSMenu* menu = (wxNSMenu*) smenu; | |
91 | wxMenuImpl* menuimpl = [menu implementation]; | |
92 | if ( menuimpl ) | |
93 | { | |
94 | wxMenu* wxpeer = (wxMenu*) menuimpl->GetWXPeer(); | |
95 | if ( wxpeer ) | |
96 | wxpeer->HandleMenuClosed(); | |
97 | } | |
98 | } | |
99 | ||
100 | - (void)menu:(NSMenu *)smenu willHighlightItem:(NSMenuItem *)item | |
101 | { | |
102 | wxNSMenu* menu = (wxNSMenu*) smenu; | |
103 | wxMenuImpl* menuimpl = [menu implementation]; | |
104 | if ( menuimpl ) | |
105 | { | |
106 | wxMenu* wxpeer = (wxMenu*) menuimpl->GetWXPeer(); | |
107 | if ( [ item isKindOfClass:[wxNSMenuItem class] ] ) | |
108 | { | |
109 | wxMenuItemImpl* menuitemimpl = (wxMenuItemImpl*) [ (wxNSMenuItem*) item implementation ]; | |
110 | if ( wxpeer && menuitemimpl ) | |
111 | { | |
112 | wxpeer->HandleMenuItemHighlighted( menuitemimpl->GetWXPeer() ); | |
113 | } | |
114 | } | |
115 | } | |
116 | } | |
117 | ||
118 | @end | |
119 | ||
120 | @interface NSApplication(MissingAppleMenuCall) | |
121 | - (void)setAppleMenu:(NSMenu *)menu; | |
122 | @end | |
123 | ||
124 | class wxMenuCocoaImpl : public wxMenuImpl | |
125 | { | |
126 | public : | |
127 | wxMenuCocoaImpl( wxMenu* peer , wxNSMenu* menu) : wxMenuImpl(peer), m_osxMenu(menu) | |
128 | { | |
129 | static wxNSMenuController* controller = NULL; | |
130 | if ( controller == NULL ) | |
131 | { | |
132 | controller = [[wxNSMenuController alloc] init]; | |
133 | } | |
134 | [menu setDelegate:controller]; | |
135 | [m_osxMenu setImplementation:this]; | |
136 | // gc aware | |
137 | if ( m_osxMenu ) | |
138 | CFRetain(m_osxMenu); | |
139 | [m_osxMenu release]; | |
140 | } | |
141 | ||
142 | virtual ~wxMenuCocoaImpl(); | |
143 | ||
144 | virtual void InsertOrAppend(wxMenuItem *pItem, size_t pos) | |
145 | { | |
146 | NSMenuItem* nsmenuitem = (NSMenuItem*) pItem->GetPeer()->GetHMenuItem(); | |
147 | // make sure a call of SetSubMenu is also reflected (occuring after Create) | |
148 | // update the native menu item accordingly | |
149 | ||
150 | if ( pItem->IsSubMenu() ) | |
151 | { | |
152 | wxMenu* wxsubmenu = pItem->GetSubMenu(); | |
153 | WXHMENU nssubmenu = wxsubmenu->GetHMenu(); | |
154 | if ( [nsmenuitem submenu] != nssubmenu ) | |
155 | { | |
156 | wxsubmenu->GetPeer()->SetTitle( pItem->GetItemLabelText() ); | |
157 | [nsmenuitem setSubmenu:nssubmenu]; | |
158 | } | |
159 | } | |
160 | ||
161 | if ( pos == (size_t) -1 ) | |
162 | [m_osxMenu addItem:nsmenuitem ]; | |
163 | else | |
164 | [m_osxMenu insertItem:nsmenuitem atIndex:pos]; | |
165 | } | |
166 | ||
167 | virtual void Remove( wxMenuItem *pItem ) | |
168 | { | |
169 | [m_osxMenu removeItem:(NSMenuItem*) pItem->GetPeer()->GetHMenuItem()]; | |
170 | } | |
171 | ||
172 | virtual void MakeRoot() | |
173 | { | |
174 | [NSApp setMainMenu:m_osxMenu]; | |
175 | [NSApp setAppleMenu:[[m_osxMenu itemAtIndex:0] submenu]]; | |
176 | } | |
177 | ||
178 | virtual void Enable( bool WXUNUSED(enable) ) | |
179 | { | |
180 | } | |
181 | ||
182 | virtual void SetTitle( const wxString& text ) | |
183 | { | |
184 | wxCFStringRef cfText(text); | |
185 | [m_osxMenu setTitle:cfText.AsNSString()]; | |
186 | } | |
187 | ||
188 | virtual void PopUp( wxWindow *win, int x, int y ) | |
189 | { | |
190 | win->ScreenToClient( &x , &y ) ; | |
191 | NSView *view = win->GetPeer()->GetWXWidget(); | |
192 | NSRect frame = [view frame]; | |
193 | frame.origin.x = x; | |
194 | frame.origin.y = y; | |
195 | frame.size.width = 1; | |
196 | frame.size.height = 1; | |
197 | NSPopUpButtonCell *popUpButtonCell = [[NSPopUpButtonCell alloc] initTextCell:@"" pullsDown:NO]; | |
198 | [popUpButtonCell setAutoenablesItems:NO]; | |
199 | [popUpButtonCell setAltersStateOfSelectedItem:NO]; | |
200 | [popUpButtonCell setMenu:m_osxMenu]; | |
201 | [popUpButtonCell selectItem:nil]; | |
202 | [popUpButtonCell performClickWithFrame:frame inView:view]; | |
203 | [popUpButtonCell release]; | |
204 | } | |
205 | ||
206 | WXHMENU GetHMenu() { return m_osxMenu; } | |
207 | ||
208 | static wxMenuImpl* Create( wxMenu* peer, const wxString& title ); | |
209 | static wxMenuImpl* CreateRootMenu( wxMenu* peer ); | |
210 | protected : | |
211 | wxNSMenu* m_osxMenu; | |
212 | } ; | |
213 | ||
214 | wxMenuCocoaImpl::~wxMenuCocoaImpl() | |
215 | { | |
216 | [m_osxMenu setDelegate:nil]; | |
217 | [m_osxMenu setImplementation:nil]; | |
218 | // gc aware | |
219 | if ( m_osxMenu ) | |
220 | CFRelease(m_osxMenu); | |
221 | } | |
222 | ||
223 | wxMenuImpl* wxMenuImpl::Create( wxMenu* peer, const wxString& title ) | |
224 | { | |
225 | wxCFStringRef cfText( title ); | |
226 | wxNSMenu* menu = [[wxNSMenu alloc] initWithTitle:cfText.AsNSString()]; | |
227 | wxMenuImpl* c = new wxMenuCocoaImpl( peer, menu ); | |
228 | return c; | |
229 | } |