home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / YellowBox / Productivity / MarginMaster-5.0-w / MenuObject.h < prev    next >
Encoding:
Text File  |  1998-04-18  |  440 b   |  17 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface MenuObject : NSObject
  4. {
  5.     id ProfitWindow;
  6.     id InfoPanel; // Used by InfoPanel.Subproject
  7.     id MoreInfo;  // Used by MoreInfo.Subproject
  8. }
  9.  
  10.  
  11. - (void)ShowInfoPanel:(id)sender; // Show the Info panel from the InfoPanel.Subproject
  12. - (void)ShowMoreInfo:(id)sender; // Show the More Info panel from the MoreInfo.Subproject
  13. - (void)HelpandIntro:(id)sender; // Show the HelpandIntro nib file
  14.  
  15.    
  16. @end
  17.