home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / graphicsUndo.subproj / GridChange.h < prev    next >
Text File  |  1995-08-03  |  383b  |  22 lines

  1. @interface GridChange : Change
  2. {
  3.     id        graphicView;
  4.     int     oldSpacing;
  5.     float     oldGray;
  6.     BOOL    oldVisible;
  7.     BOOL    oldEnabled;
  8.     int     newSpacing;
  9.     float     newGray;
  10.     BOOL    newVisible;
  11.     BOOL    newEnabled;
  12. }
  13.  
  14. - initGraphicView:aGraphicView;
  15. - (NSString *)changeName;
  16. - (void)saveBeforeChange;
  17. - (void)undoChange;
  18. - (void)redoChange;
  19. - (BOOL)subsumeChange:change;
  20.  
  21. @end
  22.