home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Programming / DrawingServant / Source / DrawingServant.h next >
Encoding:
C/C++ Source or Header  |  1993-07-13  |  859 b   |  41 lines

  1. @interface Drawclass:View
  2. {
  3. BOOL needtoclear;
  4. BOOL justlast;
  5. BOOL printmouseclicks;
  6. BOOL sendackstring;
  7. int inpipenumber;
  8. int outpipenumber;
  9. float height,width,xoffset,yoffset;
  10. char **psstrings;
  11. int maxstrings;
  12. int nstrings;
  13. NXRect windowrectangle;
  14. }
  15. -drawSelf: (NXRect *)rects: (int)rectCount;
  16. -addtostrings:(char *)string;
  17. -subfromstrings:(char *)string;
  18. -clearview:sender;
  19. -saveview:sender;
  20. -printview:sender;
  21. -(int)inpipe:sender;
  22. -(int)outpipe:sender;
  23. -(NXRect *)viewbox:sender;
  24. -expandstringarea:(int)to From:(int)from;
  25. -mouseon:sender;
  26. -mouseoff:sender;
  27. -mouseDown:(NXEvent *)theEvent;
  28. -rightMouseDown:(NXEvent *)theEvent;
  29. -ackoff:sender;
  30. -ackon:sender;
  31. -(BOOL)isackon:sender;
  32. -commandlineargs:(int)argc:(char**)argv;
  33. -copyPSToStream:(NXStream *)aStream forView:view;
  34. @end
  35.  
  36. @interface InfoPanel:View
  37. {
  38. }
  39. -drawSelf: (NXRect *)rects: (int)rectCount;
  40. @end
  41.