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

  1. @interface Inspector : Object
  2. {
  3.     Graphic *selectedGraphic;    /* the currently displayed graphic */
  4.     GraphicView *graphicView;    /* the view selectedGraphic is in */
  5.     NXSize lastSize;        /* the last size displayed */
  6.     Slider *lineWidthSlider;
  7.     id    lineWidthField;
  8.     id    arrows;
  9.     id    width;
  10.     id    lineColor;
  11.     id    fillColor;
  12.     id    filled;
  13.     id    lineCap;
  14.     id    lineJoin;
  15.     id    height;
  16.     id    formEntry;
  17. }
  18.  
  19. /* Public methods */
  20.  
  21. - loadGraphic:(Graphic *)graphic;
  22. - load:(GraphicView *)graphicView;
  23. - initializeGraphic:(Graphic *)graphic;
  24. - preset;
  25.  
  26. /* Panel delegate method */
  27.  
  28. - windowDidUpdate:(Window *)sender;
  29.  
  30. /* Target/Action methods */
  31.  
  32. - changeContinuous:sender;
  33. - changeArrows:sender;
  34. - changeLineJoin:sender;
  35. - changeLineWidth:sender;
  36. - changeLineCap:sender;
  37. - changeDimensions:sender;
  38. - changeLineColor:sender;
  39. - changeFillColor:sender;
  40. - changeFilled:sender;
  41. - changeFormEntry:sender;
  42.  
  43. @end
  44.