Tobias Bocanegra created CB-10087:
-------------------------------------

             Summary: OSX: facilitate easy preferences menu item handling
                 Key: CB-10087
                 URL: https://issues.apache.org/jira/browse/CB-10087
             Project: Apache Cordova
          Issue Type: Improvement
          Components: OSX
    Affects Versions: Master
            Reporter: Tobias Bocanegra
            Assignee: Tobias Bocanegra


currently it is not easy possible to capture the applications preferences menu 
item, except via the title, which is a bit unstable.

either we define a tag value or a predefined action selector that can be 
detected. for example:

{noformat}
    NSMenu* appMenu = self.viewController.window.menu;
    NSMenu* mainMenu = [appMenu itemAtIndex:0].submenu;

    for (NSMenuItem* item in mainMenu.itemArray) {
        if (item.action == @selector(onPreferences:)) {
            // adjust target to use this plugin
            item.target = self; 
            break;
        }
    }
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to