]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/menuitem.mm
Add support for specifying child process cwd and env to wxExecute().
[wxWidgets.git] / src / cocoa / menuitem.mm
CommitLineData
fb896a32 1///////////////////////////////////////////////////////////////////////////////
25466131 2// Name: src/cocoa/menuitem.mm
fb896a32
DE
3// Purpose: wxMenuItem implementation
4// Author: David Elliott
5// Modified by:
6// Created: 2002/12/15
3ad32dc5
DE
7// RCS-ID: $Id$
8// Copyright: 2002-2004 David Elliott
9// Licence: wxWindows licence
fb896a32
DE
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#include "wx/wxprec.h"
25466131
WS
21
22#if wxUSE_MENUS
23
24#include "wx/menuitem.h"
25
e7e1ad7d
DE
26#include "wx/cocoa/objc/objc_uniquifying.h"
27
fb896a32
DE
28#ifndef WX_PRECOMP
29 #include "wx/menu.h"
fb896a32
DE
30 #include "wx/utils.h"
31 #include "wx/frame.h"
2fc2d511 32 #include "wx/log.h"
fb896a32
DE
33#endif
34
7fc77f30 35#include "wx/cocoa/autorelease.h"
b0c0a393 36#include "wx/cocoa/string.h"
fb896a32
DE
37
38#import <AppKit/NSMenuItem.h>
39#import <AppKit/NSMenu.h>
40#import <Foundation/NSString.h>
1ee4156a 41#import <AppKit/NSCell.h> // NSOnState, NSOffState
1e85b547 42#import <AppKit/NSEvent.h> // modifier key masks
fb896a32 43
fb896a32
DE
44// ----------------------------------------------------------------------------
45// functions prototypes
46// ----------------------------------------------------------------------------
47
2fc2d511
DE
48// ============================================================================
49// @class wxNSMenuItemTarget
50// ============================================================================
51@interface wxNSMenuItemTarget : NSObject
52{
53}
54
55- (void)wxMenuItemAction: (id)sender;
42036ca8 56- (BOOL)validateMenuItem: (id)menuItem;
2fc2d511 57@end //interface wxNSMenuItemTarget
e7e1ad7d 58WX_DECLARE_GET_OBJC_CLASS(wxNSMenuItemTarget,NSObject)
2fc2d511
DE
59
60@implementation wxNSMenuItemTarget : NSObject
61
62- (void)wxMenuItemAction: (id)sender
63{
48580976 64 wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction"));
2fc2d511 65 wxMenuItem *item = wxMenuItem::GetFromCocoa(sender);
2b030203 66 wxCHECK_RET(item,wxT("wxMenuItemAction received but no wxMenuItem exists!"));
d04995b3 67 item->CocoaItemSelected();
2fc2d511
DE
68}
69
42036ca8
DE
70- (BOOL)validateMenuItem: (id)menuItem
71{
065e208e 72 // TODO: Do wxWidgets validation here and avoid sending during idle time
48580976 73 wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction"));
42036ca8 74 wxMenuItem *item = wxMenuItem::GetFromCocoa(menuItem);
2b030203 75 wxCHECK_MSG(item,NO,wxT("validateMenuItem received but no wxMenuItem exists!"));
d04995b3 76 return item->Cocoa_validateMenuItem();
42036ca8
DE
77}
78
2fc2d511 79@end //implementation wxNSMenuItemTarget
e7e1ad7d 80WX_IMPLEMENT_GET_OBJC_CLASS(wxNSMenuItemTarget,NSObject)
2fc2d511 81
fb896a32
DE
82// ============================================================================
83// wxMenuItemCocoa implementation
84// ============================================================================
85IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject)
2fc2d511
DE
86wxMenuItemCocoaHash wxMenuItemCocoa::sm_cocoaHash;
87
e7e1ad7d 88wxObjcAutoRefFromAlloc<struct objc_object *> wxMenuItemCocoa::sm_cocoaTarget = [[WX_GET_OBJC_CLASS(wxNSMenuItemTarget) alloc] init];
fb896a32
DE
89
90// ----------------------------------------------------------------------------
91// wxMenuItemBase
92// ----------------------------------------------------------------------------
93
94wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu,
95 int itemid,
96 const wxString& name,
97 const wxString& help,
98 wxItemKind kind,
99 wxMenu *subMenu)
100{
101 return new wxMenuItem(parentMenu, itemid, name, help, kind, subMenu);
102}
103
1e85b547
DE
104void wxMenuItemCocoa::CocoaSetKeyEquivalent()
105{
106 wxAcceleratorEntry *accel = GetAccel();
107 if(!accel)
108 return;
109
110 int accelFlags = accel->GetFlags();
111 int keyModifierMask = 0;
112 if(accelFlags & wxACCEL_ALT)
113 keyModifierMask |= NSAlternateKeyMask;
114 if(accelFlags & wxACCEL_CTRL)
115 keyModifierMask |= NSCommandKeyMask;
116 int keyCode = accel->GetKeyCode();
117 if(isalpha(keyCode))
118 { // For alpha characters use upper/lower rather than NSShiftKeyMask
119 char alphaChar;
120 if(accelFlags & wxACCEL_SHIFT)
121 alphaChar = toupper(keyCode);
122 else
123 alphaChar = tolower(keyCode);
124 [m_cocoaNSMenuItem setKeyEquivalent:[NSString stringWithCString:&alphaChar length:1]];
125 [m_cocoaNSMenuItem setKeyEquivalentModifierMask:keyModifierMask];
126 }
127 else
128 {
129 if(accelFlags & wxACCEL_SHIFT)
130 keyModifierMask |= NSShiftKeyMask;
131 if(keyCode < 128) // low ASCII includes backspace/tab/etc.
132 { char alphaChar = keyCode;
133 [m_cocoaNSMenuItem setKeyEquivalent:[NSString stringWithCString:&alphaChar length:1]];
134 }
135 else
136 { // TODO
137 }
138 [m_cocoaNSMenuItem setKeyEquivalentModifierMask:keyModifierMask];
139 }
140}
141
fb896a32
DE
142// ----------------------------------------------------------------------------
143// ctor & dtor
144// ----------------------------------------------------------------------------
145wxMenuItemCocoa::wxMenuItemCocoa(wxMenu *pParentMenu,
146 int itemid,
147 const wxString& strName,
148 const wxString& strHelp,
149 wxItemKind kind,
150 wxMenu *pSubMenu)
151 : wxMenuItemBase(pParentMenu, itemid, strName, strHelp, kind, pSubMenu)
152{
7fc77f30 153 wxAutoNSAutoreleasePool pool;
67352554
DE
154 if(m_kind == wxITEM_SEPARATOR)
155 m_cocoaNSMenuItem = [[NSMenuItem separatorItem] retain];
156 else
fb896a32 157 {
67352554 158 NSString *menuTitle = wxInitNSStringWithWxString([NSString alloc],wxStripMenuCodes(strName));
d04995b3
DE
159 SEL action;
160 if(pSubMenu)
161 action = nil;
162 else
163 action = @selector(wxMenuItemAction:);
164 m_cocoaNSMenuItem = [[NSMenuItem alloc] initWithTitle:menuTitle action:action keyEquivalent:@""];
67352554 165 sm_cocoaHash.insert(wxMenuItemCocoaHash::value_type(m_cocoaNSMenuItem,this));
67352554
DE
166 if(pSubMenu)
167 {
168 wxASSERT(pSubMenu->GetNSMenu());
169 [pSubMenu->GetNSMenu() setTitle:menuTitle];
170 [m_cocoaNSMenuItem setSubmenu:pSubMenu->GetNSMenu()];
171 }
d04995b3
DE
172 else
173 [m_cocoaNSMenuItem setTarget: sm_cocoaTarget];
67352554 174 [menuTitle release];
1e85b547 175 CocoaSetKeyEquivalent();
fb896a32 176 }
fb896a32
DE
177}
178
179wxMenuItem::~wxMenuItem()
180{
181 sm_cocoaHash.erase(m_cocoaNSMenuItem);
182 [m_cocoaNSMenuItem release];
183}
184
d04995b3
DE
185void wxMenuItem::CocoaItemSelected()
186{
187 wxMenu *menu = GetMenu();
188 wxCHECK_RET(menu,wxT("wxMenuItemAction received but wxMenuItem is not in a wxMenu"));
189 wxMenuBar *menubar = menu->GetMenuBar();
190 if(menubar)
191 {
192 wxFrame *frame = menubar->GetFrame();
193 wxCHECK_RET(frame, wxT("wxMenuBar MUST be attached to a wxFrame!"));
194 frame->ProcessCommand(GetId());
195 }
196 else
197 {
198 if(IsCheckable())
199 Toggle();
200 GetMenu()->SendEvent(GetId(), IsCheckable()?IsChecked():-1);
201 }
202}
203
204bool wxMenuItem::Cocoa_validateMenuItem()
205{
206 // TODO: do more sanity checking
207 // TODO: Do wxWindows validation here and avoid sending during idle time
208 return IsEnabled();
209}
210
fb896a32
DE
211// ----------------------------------------------------------------------------
212// misc
213// ----------------------------------------------------------------------------
214
982fc427
DE
215void wxMenuItem::SetBitmaps(const wxBitmap& bmpChecked,
216 const wxBitmap& bmpUnchecked)
217{
218 wxCHECK_RET(m_kind != wxITEM_SEPARATOR, wxT("Separator items do not have bitmaps."));
219 wxAutoNSAutoreleasePool pool;
220 m_bmpChecked = bmpChecked;
221 m_bmpUnchecked = bmpUnchecked;
222 if(IsCheckable())
223 {
224 [m_cocoaNSMenuItem setOnStateImage: bmpChecked.GetNSImage(true)];
225 [m_cocoaNSMenuItem setOffStateImage: bmpUnchecked.GetNSImage(true)];
226 }
227 else
228 {
229 wxASSERT_MSG(!bmpUnchecked.Ok(),wxT("Normal menu items should only have one bitmap"));
230 [m_cocoaNSMenuItem setImage: bmpChecked.GetNSImage(true)];
231 }
232}
233
fb896a32
DE
234// change item state
235// -----------------
236
237void wxMenuItem::Enable(bool bDoEnable)
238{
239 wxMenuItemBase::Enable(bDoEnable);
e03a77c6 240 // NOTE: Nothing to do, we respond to validateMenuItem instead
fb896a32
DE
241}
242
1ee4156a 243void wxMenuItem::Check(bool check)
fb896a32 244{
2b030203 245 wxCHECK_RET( IsCheckable(), wxT("only checkable items may be checked") );
1ee4156a
DE
246 if(m_isChecked == check)
247 return;
248 wxAutoNSAutoreleasePool pool;
249 if(GetKind() == wxITEM_RADIO)
250 {
251 // it doesn't make sense to uncheck a radio item - what would this do?
252 if(!check)
253 return;
254 const wxMenuItemList& items = m_parentMenu->GetMenuItems();
255 // First search backwards for other radio items
256 wxMenuItemList::compatibility_iterator radioStart = items.Find(this);
257 for(wxMenuItemList::compatibility_iterator prevNode = radioStart;
258 prevNode && (prevNode->GetData()->GetKind() == wxITEM_RADIO);
259 prevNode = prevNode->GetPrevious())
260 {
261 radioStart = prevNode;
262 }
263 // Now starting there set the state of every item until we're
264 // out of radio items to set.
265 for(wxMenuItemList::compatibility_iterator node = radioStart;
266 node && (node->GetData()->GetKind() == wxITEM_RADIO);
267 node = node->GetNext())
268 {
269 wxMenuItem *item = node->GetData();
270 bool checkItem = (item == this);
271 item->wxMenuItemBase::Check(checkItem);
272 [item->m_cocoaNSMenuItem setState: checkItem?NSOnState:NSOffState];
273 }
274 }
275 else // normal check (non-radio) item
276 {
277 wxMenuItemBase::Check(check);
278 [m_cocoaNSMenuItem setState: check?NSOnState:NSOffState];
279 }
fb896a32
DE
280}
281
52af3158 282void wxMenuItem::SetItemLabel(const wxString& label)
fb896a32 283{
52af3158 284 wxMenuItemBase::SetItemLabel(label);
e03a77c6
DE
285 wxCHECK_RET(m_kind != wxITEM_SEPARATOR, wxT("Separator items do not have titles."));
286 [m_cocoaNSMenuItem setTitle: wxNSStringWithWxString(wxStripMenuCodes(label))];
1e85b547 287 CocoaSetKeyEquivalent();
fb896a32
DE
288}
289
290void wxMenuItem::SetCheckable(bool checkable)
291{
1ee4156a 292 wxCHECK_RET(m_kind != wxITEM_SEPARATOR, wxT("Separator items cannot be turned into normal menu items."));
fb896a32 293 wxMenuItemBase::SetCheckable(checkable);
1ee4156a 294 // NOTE: Cocoa does not discern between unchecked and normal items
fb896a32
DE
295}
296
297#endif // wxUSE_MENUS