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

  1. #import "drawundo.h"
  2.  
  3. @interface LineJoinGraphicsChange(PrivateMethods)
  4.  
  5. @end
  6.  
  7. @implementation LineJoinGraphicsChange
  8.  
  9. - initGraphicView:aGraphicView lineJoin:(int)aJoinValue
  10. {
  11.     [super initGraphicView:aGraphicView];
  12.     joinValue = aJoinValue;
  13.     return self;
  14. }
  15.  
  16. - (const char *)changeName
  17. {
  18.     return NXLocalStringFromTable("Operations", "Line Join", NULL, "The operation of changing the roundedness at the joint between two lines.");
  19. }
  20.  
  21. - (int)lineJoin
  22. {
  23.     return joinValue;
  24. }
  25.  
  26. - changeDetailClass
  27. {
  28.     return [LineJoinChangeDetail class];
  29. }
  30.  
  31. @end
  32.