home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Productivity / MenuClock-1.02 / MenuClock.h < prev    next >
Encoding:
Text File  |  1997-12-29  |  457 b   |  28 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface MenuClock : NSObject
  4. {
  5.     id    timer;
  6.     id    menuFormat;
  7.     id    menuSample;
  8.     id    aboutWindow;
  9.     
  10.     IBOutlet    NSWindow         *window;
  11.     IBOutlet    NSTextField        *textField;
  12.     int    makeKey;
  13. }
  14.  
  15. - (void)updateTimer:(id)sender;
  16.  
  17. - (void)setClockMouseDown;
  18.  
  19. - (void)about:(id)sender;
  20. - (void)changeFormat:(id)sender;
  21. - (void)restoreDefault:(id)sender;
  22. @end
  23.  
  24. @interface ClockApp : NSApplication
  25. - (void)finishLaunching;
  26. @end
  27.  
  28.