home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Classes / UHShapes / UHShape.h < prev    next >
Encoding:
Text File  |  1992-08-13  |  532 b   |  33 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import <appkit/appkit.h>
  5.  
  6. @interface UHShape:View
  7. {
  8.     NXColor lineColor;
  9.     NXColor fillColor;
  10.     float lineWidth;
  11.     int choice;
  12.     int tag;
  13.     BOOL isBordered;
  14.     BOOL isFilled;
  15. }
  16.  
  17. - setChoice:(int)value;
  18. - setLineWidth:(float)value;
  19. - setLineColor:(NXColor)aColor;
  20. - setFillColor:(NXColor)aColor;
  21. - setTag:(int)aTag;
  22. - setBordered:(BOOL)flag;
  23. - setFilled:(BOOL)flag;
  24. - (BOOL)isBordered;
  25. - (BOOL)isFilled;
  26. - (int)tag;
  27. - (int)choice;
  28. - (float)lineWidth;
  29. - (NXColor)lineColor;
  30. - (NXColor)fillColor;
  31.  
  32. @end
  33.