home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / FillGraphicsChange.m < prev    next >
Encoding:
Text File  |  1995-11-28  |  597 b   |  44 lines

  1. #import "drawundo.h"
  2.  
  3. @interface FillGraphicsChange(PrivateMethods)
  4.  
  5. - (BOOL)subsumeIdenticalChange:change;
  6.  
  7. @end
  8.  
  9. @implementation FillGraphicsChange
  10.  
  11. - initGraphicView:aGraphicView
  12. {
  13.     return [self initGraphicView:aGraphicView fill:-1];
  14. }
  15.  
  16. - initGraphicView:aGraphicView fill:(int)fillValue
  17. {
  18.     [super initGraphicView:aGraphicView];
  19.     fill = fillValue;
  20.     return self;
  21. }
  22.  
  23. - (NSString *)changeName
  24. {
  25.     return FILL_OP;
  26. }
  27.  
  28. - (Class)changeDetailClass
  29. {
  30.     return [FillChangeDetail class];
  31. }
  32.  
  33. - (BOOL)subsumeIdenticalChange:change
  34. {
  35.     return YES;
  36. }
  37.  
  38. - (int)fill
  39. {
  40.     return fill;
  41. }
  42.  
  43. @end
  44.