mirror of https://github.com/bsnes-emu/bsnes.git
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
#if defined(Hiro_MenuItem)
|
|
|
|
@implementation CocoaMenuItem : NSMenuItem
|
|
|
|
-(id) initWith:(hiro::mMenuItem&)menuItemReference {
|
|
if(self = [super initWithTitle:@"" action:@selector(activate) keyEquivalent:@""]) {
|
|
menuItem = &menuItemReference;
|
|
|
|
[self setTarget:self];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
-(void) activate {
|
|
menuItem->doActivate();
|
|
}
|
|
|
|
@end
|
|
|
|
namespace hiro {
|
|
|
|
auto pMenuItem::construct() -> void {
|
|
@autoreleasepool {
|
|
cocoaAction = cocoaMenuItem = [[CocoaMenuItem alloc] initWith:self()];
|
|
pAction::construct();
|
|
|
|
setIcon(state().icon);
|
|
setText(state().text);
|
|
}
|
|
}
|
|
|
|
auto pMenuItem::destruct() -> void {
|
|
@autoreleasepool {
|
|
[cocoaAction release];
|
|
}
|
|
}
|
|
|
|
auto pMenuItem::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 pMenuItem::setText(const string& text) -> void {
|
|
@autoreleasepool {
|
|
[cocoaAction setTitle:[NSString stringWithUTF8String:text]];
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|