home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Draw / GridView.h < prev    next >
Text File  |  1992-02-09  |  489b  |  32 lines

  1. @interface GridView : View
  2. {
  3.     id spacing;
  4.     id grayField;
  5.     id graySlider;
  6.     id graphicView;
  7.     id form;
  8. }
  9.  
  10. /* Public methods */
  11.  
  12. - runModalForGraphicView:(GraphicView *)graphicView;
  13.  
  14. /* Private methods */
  15.  
  16. - drawGrid:(int)grid;
  17.  
  18. /* Methods overridden from superclass */
  19.  
  20. - drawSelf:(const NXRect *)rects :(int)rectCount;
  21. - mouseDown:(NXEvent *)event;
  22.  
  23. /* Target/Action methods */
  24.  
  25. - show:sender;
  26. - off:sender;
  27. - cancel:sender;
  28. - changeSpacing:sender;
  29. - changeGray:sender;
  30.  
  31. @end
  32.