home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / PerformTextGraphicsChange.h < prev    next >
Text File  |  1995-08-07  |  471b  |  19 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. - (NSString *)changeName;
  11. - (void)undoChange;
  12. - (void)redoChange;
  13. - (BOOL)incorporateChange:change;
  14. - (void)loadGraphic;
  15. - (void)unloadGraphic;
  16. - (NSText *)editText;
  17.  
  18. @end
  19.