home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Examples / AppKit / Draw / Ruler.h < prev    next >
Encoding:
Text File  |  1992-02-10  |  262 b   |  17 lines

  1. @interface Ruler : View <Ruler>
  2. {
  3.     Font *font;
  4.     NXCoord descender;
  5.     NXCoord startX;
  6.     NXCoord lastlp, lasthp;
  7.     BOOL flipped;
  8.     BOOL notHidden;
  9. }
  10.  
  11. + (NXCoord)width;
  12.  
  13. - setFont:(Font *)aFont;
  14. - drawSelf:(const NXRect *)rects :(int)rectCount;
  15.  
  16. @end
  17.