home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / NEXTARCH.TAR / NeXTArchie / PercentView.h < prev    next >
Encoding:
Text File  |  1992-01-19  |  239 b   |  14 lines

  1. /* Simple subclass of View that display a fraction of a circle
  2.      to represent the percent set by its displayPercent: method */
  3.  
  4. #import <appkit/View.h>
  5.  
  6. @interface PercentView : View
  7. {
  8.     float percent;
  9. }
  10.  
  11. - displayPercent: (float) p;
  12.  
  13. @end
  14.