home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / EndEditingGraphicsChange.h < prev    next >
Encoding:
Text File  |  1995-08-03  |  526 b   |  21 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. - (NSString *)changeName;
  17. - (void)undoChange;
  18. - (void)redoChange;
  19.  
  20. @end
  21.