diff -r 65ca67754d14 -r 914fbb4edbae MenuEditor.st --- a/MenuEditor.st Tue Oct 23 15:59:12 2012 +0200 +++ b/MenuEditor.st Wed Oct 24 15:08:09 2012 +0200 @@ -103,37 +103,41 @@ documentation " The MenuEditor allows you to create, modify or just inspect - menus. - + menu specifications. Such specifications are returned by menu-spec methods + of the application class. These methods are typically tagged with a menu-resource. + The menu editor is able to retrieve such specifications and generate new menu-spec + methods. + + The editor is typically opened by double-clicking on a menu-spec method in the browser. [Instance variables:] - listOfItemsView the view which shows the list of items - listOfItems hierarchical list of menu items - listOfTabs list of current shown tab-labels - - selectionHolder collection of current selected items - selectedSuperItems collection of superItems derived from selection - - tabHolder selected tab label holder - notifyDisabledCounter ~~ 0 than change notifications are discard - wizards keeps all created wizard dialogs - - dropOverLine nil: drop context not dropabel. - = 0: drop context dropable but no item specified - ~ 0: drop context dropable for item at lineNumber - used t6o restore drop indication drawings + listOfItemsView the view which shows the list of items + listOfItems hierarchical list of menu items + listOfTabs list of current shown tab-labels + + selectionHolder collection of current selected items + selectedSuperItems collection of superItems derived from selection + + tabHolder selected tab label holder + notifyDisabledCounter ~~ 0 than change notifications are discard + wizards keeps all created wizard dialogs + + dropOverLine nil: drop context not dropabel. + = 0: drop context dropable but no item specified + ~ 0: drop context dropable for item at lineNumber + used t6o restore drop indication drawings [Class variables:] - ImageRetrieverClasses sorted collection of image receivers + ImageRetrieverClasses sorted collection of image receivers [start with:] - MenuEditor open - MenuEditor openOnClass:MenuEditor andSelector:#menu + MenuEditor open + MenuEditor openOnClass:MenuEditor andSelector:#menu [author:] - Claus Atzkern, eXept Software AG - Thomas Zwick, eXept Software AG + Claus Atzkern, eXept Software AG + Thomas Zwick, eXept Software AG " ! !