home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / TextSizingExample / Aspect.h next >
Text File  |  1996-04-17  |  539b  |  37 lines

  1. /*
  2.         Apsect.h
  3.         TextSizingExample
  4.    
  5.         Author: Mike Ferris
  6. */
  7.  
  8. #import <AppKit/AppKit.h>
  9.  
  10. #define IBOutlet
  11.  
  12. extern const float LargeNumberForText;
  13.  
  14. @class Controller;
  15.  
  16. @interface Aspect : NSObject {
  17.     IBOutlet NSWindow *window;
  18.     IBOutlet NSView *view;
  19.  
  20.     Controller *_controller;
  21.     BOOL _nibLoaded;
  22. }
  23.  
  24. + (id)aspectWithController:(Controller *)controller;
  25.  
  26. - (Controller *)controller;
  27.  
  28. - (NSString *)aspectName;
  29. - (NSString *)aspectNibName;
  30. - (NSView *)aspectView;
  31.  
  32. - (void)didLoadNib;
  33.  
  34. - (void)didSwapIn;
  35.  
  36. @end
  37.