I'm working on a Cocoa application that will eventually only have 2 items in the main window menu. Not included in these items is the 'Edit' menu item. Is it possible to add all the functionality of the 'Edit' item to the application without having 'Edit'? I'm talking about all of the copy, paste, undo etc.... I know one could do this by adding keyboard listeners in window controllers, but I'm wondering if this can be done any other way?
The reason I want to do it differently is that I still want to use these commands in the native About window. That window doesn't have a controller (that I know of) that a listener could be added to. If anyone has alternative ideas about how to do this I'm all ears.