314 lines
7.7 KiB
Text
314 lines
7.7 KiB
Text
#include "FGCocoaMenuBar.hxx"
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <simgear/props/props.hxx>
|
|
#include <simgear/props/props_io.hxx>
|
|
#include <simgear/debug/logstream.hxx>
|
|
#include <simgear/structure/SGBinding.hxx>
|
|
#include <simgear/misc/strutils.hxx>
|
|
|
|
#include <Main/fg_props.hxx>
|
|
#include <GUI/CocoaHelpers_private.h>
|
|
|
|
#include <iostream>
|
|
|
|
using std::string;
|
|
using std::map;
|
|
using std::cout;
|
|
using namespace simgear;
|
|
|
|
typedef std::map<NSMenuItem*, SGBindingList> MenuItemBindings;
|
|
|
|
@class CocoaMenuDelegate;
|
|
|
|
class FGCocoaMenuBar::CocoaMenuBarPrivate
|
|
{
|
|
public:
|
|
CocoaMenuBarPrivate();
|
|
~CocoaMenuBarPrivate();
|
|
|
|
void menuFromProps(NSMenu* menu, SGPropertyNode* menuNode);
|
|
|
|
void fireBindingsForItem(NSMenuItem* item);
|
|
|
|
public:
|
|
CocoaMenuDelegate* delegate;
|
|
|
|
MenuItemBindings itemBindings;
|
|
std::vector<SGPropertyChangeListener*> listeners;
|
|
};
|
|
|
|
// prior to the 10.6 SDK, NSMenuDelegate was an informal protocol
|
|
#if __MAC_OS_X_VERSION_MIN_REQUIRED < 1060
|
|
@protocol NSMenuDelegate <NSObject>
|
|
@end
|
|
#endif
|
|
|
|
@interface CocoaMenuDelegate : NSObject <NSMenuDelegate> {
|
|
@private
|
|
FGCocoaMenuBar::CocoaMenuBarPrivate* peer;
|
|
}
|
|
|
|
@property (nonatomic, assign) FGCocoaMenuBar::CocoaMenuBarPrivate* peer;
|
|
@end
|
|
|
|
@implementation CocoaMenuDelegate
|
|
|
|
@synthesize peer;
|
|
|
|
- (void) itemAction:(id) sender
|
|
{
|
|
peer->fireBindingsForItem((NSMenuItem*) sender);
|
|
}
|
|
|
|
@end
|
|
|
|
static void setFunctionKeyShortcut(const std::string& shortcut, NSMenuItem* item)
|
|
{
|
|
unichar shortcutChar = NSF1FunctionKey;
|
|
if (shortcut == "F1") {
|
|
shortcutChar = NSF1FunctionKey;
|
|
} else if (shortcut == "F2") {
|
|
shortcutChar = NSF2FunctionKey;
|
|
} else if (shortcut == "F3") {
|
|
shortcutChar = NSF3FunctionKey;
|
|
} else if (shortcut == "F10") {
|
|
shortcutChar = NSF10FunctionKey;
|
|
} else if (shortcut == "F11") {
|
|
shortcutChar = NSF11FunctionKey;
|
|
} else if (shortcut == "F12") {
|
|
shortcutChar = NSF12FunctionKey;
|
|
} else {
|
|
SG_LOG(SG_GENERAL, SG_WARN, "CocoaMenu:setFunctionKeyShortcut: unsupported:" << shortcut);
|
|
}
|
|
|
|
unichar ch[1];
|
|
ch[0] = shortcutChar;
|
|
[item setKeyEquivalentModifierMask:NSFunctionKeyMask];
|
|
[item setKeyEquivalent:[NSString stringWithCharacters:ch length:1]];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setItemShortcutFromString(NSMenuItem* item, const string& s)
|
|
{
|
|
std::string shortcut;
|
|
|
|
bool hasCtrl = strutils::starts_with(s, "Ctrl-");
|
|
bool hasShift = strutils::starts_with(s, "Shift-");
|
|
bool hasAlt = strutils::starts_with(s, "Alt-");
|
|
|
|
int offset = 0; // character offset from start of string
|
|
if (hasShift) offset += 6;
|
|
if (hasCtrl) offset += 5;
|
|
if (hasAlt) offset += 4;
|
|
|
|
shortcut = s.substr(offset);
|
|
if (shortcut == "Esc")
|
|
shortcut = "\e";
|
|
|
|
if ((shortcut.length() >= 2) && (shortcut[0] == 'F') && isdigit(shortcut[1])) {
|
|
setFunctionKeyShortcut(shortcut, item);
|
|
return;
|
|
}
|
|
|
|
simgear::strutils::lowercase(shortcut);
|
|
[item setKeyEquivalent:[NSString stringWithCString:shortcut.c_str() encoding:NSUTF8StringEncoding]];
|
|
NSUInteger modifiers = 0;
|
|
if (hasCtrl) modifiers |= NSControlKeyMask;
|
|
if (hasShift) modifiers |= NSShiftKeyMask;
|
|
if (hasAlt) modifiers |= NSAlternateKeyMask;
|
|
|
|
[item setKeyEquivalentModifierMask:modifiers];
|
|
}
|
|
|
|
namespace {
|
|
|
|
class CocoaEnabledListener : public SGPropertyChangeListener
|
|
{
|
|
public:
|
|
CocoaEnabledListener(NSMenuItem* i) :
|
|
item(i)
|
|
{
|
|
|
|
}
|
|
|
|
~CocoaEnabledListener()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
virtual void valueChanged(SGPropertyNode *node)
|
|
{
|
|
CocoaAutoreleasePool pool;
|
|
BOOL b = node->getBoolValue();
|
|
[item setEnabled:b];
|
|
}
|
|
|
|
private:
|
|
NSMenuItem* item;
|
|
};
|
|
} // of anonymous namespace
|
|
|
|
FGCocoaMenuBar::CocoaMenuBarPrivate::CocoaMenuBarPrivate()
|
|
{
|
|
delegate = [[CocoaMenuDelegate alloc] init];
|
|
delegate.peer = this;
|
|
}
|
|
|
|
FGCocoaMenuBar::CocoaMenuBarPrivate::~CocoaMenuBarPrivate()
|
|
{
|
|
CocoaAutoreleasePool pool;
|
|
[delegate release];
|
|
}
|
|
|
|
static bool labelIsSeparator(NSString* s)
|
|
{
|
|
return [s hasPrefix:@"---"];
|
|
}
|
|
|
|
void FGCocoaMenuBar::CocoaMenuBarPrivate::menuFromProps(NSMenu* menu, SGPropertyNode* menuNode)
|
|
{
|
|
int index = 0;
|
|
BOOST_FOREACH(SGPropertyNode_ptr n, menuNode->getChildren("item")) {
|
|
if (!n->hasValue("enabled")) {
|
|
n->setBoolValue("enabled", true);
|
|
}
|
|
|
|
string l = getLocalizedLabel(n);
|
|
NSString* label = stdStringToCocoa(strutils::simplify(l));
|
|
string shortcut = n->getStringValue("key");
|
|
|
|
NSMenuItem* item;
|
|
if (index >= [menu numberOfItems]) {
|
|
if (labelIsSeparator(label)) {
|
|
item = [NSMenuItem separatorItem];
|
|
[menu addItem:item];
|
|
} else {
|
|
item = [menu addItemWithTitle:label action:nil keyEquivalent:@""];
|
|
if (!shortcut.empty()) {
|
|
setItemShortcutFromString(item, shortcut);
|
|
}
|
|
|
|
SGPropertyChangeListener* enableListener = new CocoaEnabledListener(item);
|
|
listeners.push_back(enableListener);
|
|
n->getNode("enabled")->addChangeListener(enableListener);
|
|
[item setTarget:delegate];
|
|
[item setAction:@selector(itemAction:)];
|
|
}
|
|
} else {
|
|
item = [menu itemAtIndex:index];
|
|
[item setTitle:label];
|
|
}
|
|
|
|
BOOL enabled = n->getBoolValue("enabled");
|
|
[item setEnabled:enabled];
|
|
|
|
SGBindingList bl = readBindingList(n->getChildren("binding"), globals->get_props());
|
|
|
|
itemBindings[item] = bl;
|
|
++index;
|
|
} // of item iteration
|
|
}
|
|
|
|
void FGCocoaMenuBar::CocoaMenuBarPrivate::fireBindingsForItem(NSMenuItem *item)
|
|
{
|
|
MenuItemBindings::iterator it = itemBindings.find(item);
|
|
if (it == itemBindings.end()) {
|
|
return;
|
|
}
|
|
|
|
fireBindingList(it->second);
|
|
}
|
|
|
|
FGCocoaMenuBar::FGCocoaMenuBar() :
|
|
p(new CocoaMenuBarPrivate)
|
|
{
|
|
|
|
}
|
|
|
|
FGCocoaMenuBar::~FGCocoaMenuBar()
|
|
{
|
|
CocoaAutoreleasePool ap;
|
|
NSMenu* mainBar = [[NSApplication sharedApplication] mainMenu];
|
|
|
|
int num = [mainBar numberOfItems];
|
|
for (int index=1; index < num; ++index) {
|
|
NSMenuItem* topLevelItem = [mainBar itemAtIndex:index];
|
|
[topLevelItem.submenu removeAllItems];
|
|
}
|
|
|
|
std::vector<SGPropertyChangeListener*>::iterator it;
|
|
for (it = p->listeners.begin(); it != p->listeners.end(); ++it) {
|
|
delete *it;
|
|
}
|
|
}
|
|
|
|
void FGCocoaMenuBar::init()
|
|
{
|
|
CocoaAutoreleasePool pool;
|
|
|
|
NSMenu* mainBar = [[NSApplication sharedApplication] mainMenu];
|
|
SGPropertyNode_ptr props = fgGetNode("/sim/menubar/default",true);
|
|
|
|
int index = 0;
|
|
NSMenuItem* previousMenu = [mainBar itemAtIndex:0];
|
|
if (![[previousMenu title] isEqualToString:@"FlightGear"]) {
|
|
[previousMenu setTitle:@"FlightGear"];
|
|
}
|
|
|
|
BOOST_FOREACH(SGPropertyNode_ptr n, props->getChildren("menu")) {
|
|
NSString* label = stdStringToCocoa(getLocalizedLabel(n));
|
|
NSMenuItem* item = [mainBar itemWithTitle:label];
|
|
NSMenu* menu;
|
|
|
|
if (!item) {
|
|
NSInteger insertIndex = [mainBar indexOfItem:previousMenu] + 1;
|
|
item = [mainBar insertItemWithTitle:label action:nil keyEquivalent:@"" atIndex:insertIndex];
|
|
item.tag = index + 400;
|
|
|
|
menu = [[NSMenu alloc] init];
|
|
menu.title = label;
|
|
[menu setAutoenablesItems:NO];
|
|
[mainBar setSubmenu:menu forItem:item];
|
|
[menu autorelease];
|
|
} else {
|
|
menu = item.submenu;
|
|
}
|
|
|
|
// synchronise menu with properties
|
|
p->menuFromProps(menu, n);
|
|
++index;
|
|
previousMenu = item;
|
|
|
|
// track menu enable/disable state
|
|
if (!n->hasValue("enabled")) {
|
|
n->setBoolValue("enabled", true);
|
|
}
|
|
|
|
SGPropertyChangeListener* l = new CocoaEnabledListener(item);
|
|
p->listeners.push_back(l);
|
|
n->getNode("enabled")->addChangeListener(l);
|
|
}
|
|
}
|
|
|
|
bool FGCocoaMenuBar::isVisible() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void FGCocoaMenuBar::show()
|
|
{
|
|
// no-op
|
|
}
|
|
|
|
void FGCocoaMenuBar::hide()
|
|
{
|
|
// no-op
|
|
}
|
|
|