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

  1. @interface PerformTextGraphicsChange : Change
  2. {
  3.     TextGraphic *graphic;    /* graphic to be modified */
  4.     GraphicView *graphicView;    /* where the graphic is drawn */
  5.     Change *textChange;        /* actual text change */
  6.     NXStream *stream;        /* rtf stream */
  7. }
  8.  
  9. - initGraphic:graphic view:graphicView;
  10. - free;
  11. - (const char *)changeName;
  12. - undoChange;
  13. - redoChange;
  14. - (BOOL)incorporateChange:change;
  15. - loadGraphic;
  16. - unloadGraphic;
  17. - editText;
  18.  
  19. @end
  20.