Use wxObjcAutoRefFromAlloc for sm_cocoaTarget.

Move some processing code from wxMenuItemAction to CocoaItemSelected.
Add Cocoa_validateMenuItem and use it instead of calling IsEnabled directly.
Do not set the target or action for wxMenuItem that open submenus.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29865 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2004-10-15 01:39:35 +00:00
parent 28d1454aff
commit d04995b3a6
2 changed files with 42 additions and 15 deletions

View File

@@ -15,6 +15,8 @@
#include "wx/hashmap.h" #include "wx/hashmap.h"
#include "wx/bitmap.h" #include "wx/bitmap.h"
#include "wx/cocoa/ObjcRef.h"
// ======================================================================== // ========================================================================
// wxMenuItem // wxMenuItem
// ======================================================================== // ========================================================================
@@ -49,10 +51,12 @@ public:
return iter->second; return iter->second;
return NULL; return NULL;
} }
void CocoaItemSelected();
bool Cocoa_validateMenuItem();
protected: protected:
WX_NSMenuItem m_cocoaNSMenuItem; WX_NSMenuItem m_cocoaNSMenuItem;
static wxMenuItemCocoaHash sm_cocoaHash; static wxMenuItemCocoaHash sm_cocoaHash;
static struct objc_object *sm_cocoaTarget; static wxObjcAutoRefFromAlloc<struct objc_object *> sm_cocoaTarget;
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
// Implementation // Implementation
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------

View File

@@ -59,16 +59,7 @@
wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction")); wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction"));
wxMenuItem *item = wxMenuItem::GetFromCocoa(sender); wxMenuItem *item = wxMenuItem::GetFromCocoa(sender);
wxCHECK_RET(item,wxT("wxMenuItemAction received but no wxMenuItem exists!")); wxCHECK_RET(item,wxT("wxMenuItemAction received but no wxMenuItem exists!"));
item->CocoaItemSelected();
wxMenu *menu = item->GetMenu();
wxCHECK_RET(menu,wxT("wxMenuItemAction received but wxMenuItem is not in a wxMenu"));
wxMenuBar *menubar = menu->GetMenuBar();
if(menubar)
{
wxFrame *frame = menubar->GetFrame();
wxCHECK_RET(frame, wxT("wxMenuBar MUST be attached to a wxFrame!"));
frame->ProcessCommand(item->GetId());
}
} }
- (BOOL)validateMenuItem: (id)menuItem - (BOOL)validateMenuItem: (id)menuItem
@@ -77,7 +68,7 @@
wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction")); wxLogTrace(wxTRACE_COCOA,wxT("wxMenuItemAction"));
wxMenuItem *item = wxMenuItem::GetFromCocoa(menuItem); wxMenuItem *item = wxMenuItem::GetFromCocoa(menuItem);
wxCHECK_MSG(item,NO,wxT("validateMenuItem received but no wxMenuItem exists!")); wxCHECK_MSG(item,NO,wxT("validateMenuItem received but no wxMenuItem exists!"));
return item->IsEnabled(); return item->Cocoa_validateMenuItem();
} }
@end //implementation wxNSMenuItemTarget @end //implementation wxNSMenuItemTarget
@@ -88,7 +79,7 @@
IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject) IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject)
wxMenuItemCocoaHash wxMenuItemCocoa::sm_cocoaHash; wxMenuItemCocoaHash wxMenuItemCocoa::sm_cocoaHash;
struct objc_object *wxMenuItemCocoa::sm_cocoaTarget = [[wxNSMenuItemTarget alloc] init]; wxObjcAutoRefFromAlloc<struct objc_object *> wxMenuItemCocoa::sm_cocoaTarget = [[wxNSMenuItemTarget alloc] init];
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxMenuItemBase // wxMenuItemBase
@@ -127,15 +118,21 @@ wxMenuItemCocoa::wxMenuItemCocoa(wxMenu *pParentMenu,
else else
{ {
NSString *menuTitle = wxInitNSStringWithWxString([NSString alloc],wxStripMenuCodes(strName)); NSString *menuTitle = wxInitNSStringWithWxString([NSString alloc],wxStripMenuCodes(strName));
m_cocoaNSMenuItem = [[NSMenuItem alloc] initWithTitle:menuTitle action:@selector(wxMenuItemAction:) keyEquivalent:@""]; SEL action;
if(pSubMenu)
action = nil;
else
action = @selector(wxMenuItemAction:);
m_cocoaNSMenuItem = [[NSMenuItem alloc] initWithTitle:menuTitle action:action keyEquivalent:@""];
sm_cocoaHash.insert(wxMenuItemCocoaHash::value_type(m_cocoaNSMenuItem,this)); sm_cocoaHash.insert(wxMenuItemCocoaHash::value_type(m_cocoaNSMenuItem,this));
[m_cocoaNSMenuItem setTarget:sm_cocoaTarget];
if(pSubMenu) if(pSubMenu)
{ {
wxASSERT(pSubMenu->GetNSMenu()); wxASSERT(pSubMenu->GetNSMenu());
[pSubMenu->GetNSMenu() setTitle:menuTitle]; [pSubMenu->GetNSMenu() setTitle:menuTitle];
[m_cocoaNSMenuItem setSubmenu:pSubMenu->GetNSMenu()]; [m_cocoaNSMenuItem setSubmenu:pSubMenu->GetNSMenu()];
} }
else
[m_cocoaNSMenuItem setTarget: sm_cocoaTarget];
[menuTitle release]; [menuTitle release];
} }
} }
@@ -146,6 +143,32 @@ wxMenuItem::~wxMenuItem()
[m_cocoaNSMenuItem release]; [m_cocoaNSMenuItem release];
} }
void wxMenuItem::CocoaItemSelected()
{
wxMenu *menu = GetMenu();
wxCHECK_RET(menu,wxT("wxMenuItemAction received but wxMenuItem is not in a wxMenu"));
wxMenuBar *menubar = menu->GetMenuBar();
if(menubar)
{
wxFrame *frame = menubar->GetFrame();
wxCHECK_RET(frame, wxT("wxMenuBar MUST be attached to a wxFrame!"));
frame->ProcessCommand(GetId());
}
else
{
if(IsCheckable())
Toggle();
GetMenu()->SendEvent(GetId(), IsCheckable()?IsChecked():-1);
}
}
bool wxMenuItem::Cocoa_validateMenuItem()
{
// TODO: do more sanity checking
// TODO: Do wxWindows validation here and avoid sending during idle time
return IsEnabled();
}
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// misc // misc
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------