home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Starter / Source / MenuController.h < prev    next >
Encoding:
Text File  |  1994-10-11  |  478 b   |  28 lines

  1.  
  2. /* MenuController.h - written by Robert Vasvari 6/94 */
  3. #import "Controller.h"
  4.  
  5. @interface MenuController:Controller
  6. {
  7.     /* menu cells */
  8.     id documentMenu;
  9.     id toolsMenu;
  10.     id editMenu;
  11.     id windowsMiniaturize;
  12.     id windowsClose;
  13.     id editDelete;
  14. }
  15.  
  16. - appDidInit:sender;
  17.  
  18. /* menu update methods */
  19.  
  20. - (BOOL)updateDocMenus:aMenuCell;
  21. - (BOOL)updateWindowsMiniaturize:aMenuCell;
  22. - (BOOL)updateWindowsClose:aMenuCell;
  23.  
  24. - (BOOL)updateEditMenus:aMenuCell;
  25. - (BOOL)isDeleteEnabled;
  26.  
  27. @end
  28.