home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Draw / Ruler.h < prev    next >
Text File  |  1992-02-09  |  262b  |  16 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 *)aFontRW#drawSelf:(const NXRect *)rects :(int)rectCount;
  14.  
  15. @end
  16.