mirror of https://github.com/bsnes-emu/bsnes.git
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
#if defined(Hiro_Menu)
|
|
|
|
@implementation CocoaMenu : NSMenuItem
|
|
|
|
-(id) initWith:(hiro::mMenu&)menuReference {
|
|
if(self = [super initWithTitle:@"" action:nil keyEquivalent:@""]) {
|
|
menu = &menuReference;
|
|
|
|
cocoaMenu = [[NSMenu alloc] initWithTitle:@""];
|
|
[self setSubmenu:cocoaMenu];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
-(NSMenu*) cocoaMenu {
|
|
return cocoaMenu;
|
|
}
|
|
|
|
@end
|
|
|
|
namespace hiro {
|
|
|
|
auto pMenu::construct() -> void {
|
|
@autoreleasepool {
|
|
cocoaAction = cocoaMenu = [[CocoaMenu alloc] initWith:self()];
|
|
pAction::construct();
|
|
|
|
setIcon(state().icon);
|
|
setText(state().text);
|
|
}
|
|
}
|
|
|
|
auto pMenu::destruct() -> void {
|
|
@autoreleasepool {
|
|
[[cocoaAction cocoaMenu] release];
|
|
[cocoaAction release];
|
|
}
|
|
}
|
|
|
|
auto pMenu::append(sAction action) -> void {
|
|
@autoreleasepool {
|
|
if(auto pAction = action->self()) {
|
|
[[cocoaAction cocoaMenu] addItem:pAction->cocoaAction];
|
|
}
|
|
}
|
|
}
|
|
|
|
auto pMenu::remove(sAction action) -> void {
|
|
@autoreleasepool {
|
|
if(auto pAction = action->self()) {
|
|
[[cocoaAction cocoaMenu] removeItem:pAction->cocoaAction];
|
|
}
|
|
}
|
|
}
|
|
|
|
auto pMenu::setIcon(const image& icon) -> void {
|
|
@autoreleasepool {
|
|
uint size = 15; //there is no API to retrieve the optimal size
|
|
[cocoaAction setImage:NSMakeImage(icon, size, size)];
|
|
}
|
|
}
|
|
|
|
auto pMenu::setText(const string& text) -> void {
|
|
@autoreleasepool {
|
|
[[cocoaAction cocoaMenu] setTitle:[NSString stringWithUTF8String:text]];
|
|
[cocoaAction setTitle:[NSString stringWithUTF8String:text]];
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|