home *** CD-ROM | disk | FTP | other *** search
-
- /* MenuController.h - written by Robert Vasvari 6/94 */
- #import "Controller.h"
-
- @interface MenuController:Controller
- {
- /* menu cells */
- id documentMenu;
- id toolsMenu;
- id editMenu;
- id windowsMiniaturize;
- id windowsClose;
- id editDelete;
- }
-
- - appDidInit:sender;
-
- /* menu update methods */
-
- - (BOOL)updateDocMenus:aMenuCell;
- - (BOOL)updateWindowsMiniaturize:aMenuCell;
- - (BOOL)updateWindowsClose:aMenuCell;
-
- - (BOOL)updateEditMenus:aMenuCell;
- - (BOOL)isDeleteEnabled;
-
- @end
-