home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / Ruler.h < prev    next >
Text File  |  1995-07-30  |  251b  |  17 lines

  1. @interface Ruler : NSView <Ruler>
  2. {
  3.     NSFont *font;
  4.     float descender;
  5.     float startX;
  6.     float lastlp, lasthp;
  7.     BOOL zeroAtViewOrigin;
  8.     BOOL notHidden;
  9. }
  10.  
  11. + (float)width;
  12.  
  13. - setFont:(NSFont *)aFont;
  14. - (void)drawRect:(NSRect)rects;
  15.  
  16. @end
  17.