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

  1. /*
  2.  * This change is created when the user finishes editing a text
  3.  * graphic. Undoing this change inserts the re-inserts the text
  4.  * editing cursor in the text. More significantly, undoing this
  5.  * change swaps the contents of the TextGraphic back into the
  6.  * field editor so that it is ready to edit.
  7.  */
  8.  
  9. @interface EndEditingGraphicsChange : Change
  10. {
  11.     id         graphicView;
  12.     TextGraphic    *graphic;
  13. }
  14.  
  15. - initGraphicView:aGraphicView graphic:aGraphic;
  16. - free;
  17. - (const char *)changeName;
  18. - undoChange;
  19. - redoChange;
  20.  
  21. @end
  22.