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

  1. /*
  2.         FieldApsect.h
  3.         TextSizingExample
  4.  
  5.         Author: Mike Ferris
  6. */
  7.  
  8. #import "Aspect.h"
  9.  
  10. @interface FieldAspect : Aspect {
  11.     IBOutlet NSBox *leftAlignedBox;
  12.     IBOutlet NSBox *centerAlignedBox;
  13.     IBOutlet NSBox *rightAlignedBox;
  14.     IBOutlet NSBox *scrollingLeftAlignedBox;
  15.     IBOutlet NSBox *scrollingCenterAlignedBox;
  16.     IBOutlet NSBox *scrollingRightAlignedBox;
  17.  
  18.     NSTextView *leftAlignedTextView;
  19.     NSTextView *centerAlignedTextView;
  20.     NSTextView *rightAlignedTextView;
  21.     NSTextView *scrollingLeftAlignedTextView;
  22.     NSTextView *scrollingCenterAlignedTextView;
  23.     NSTextView *scrollingRightAlignedTextView;
  24.  
  25.     NSRect leftTVKnownFrame;
  26.     NSRect centerTVKnownFrame;
  27.     NSRect rightTVKnownFrame;
  28. }
  29.  
  30. @end
  31.