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

  1. #import "drawundo.h"
  2.  
  3. @interface AspectRatioGraphicsChange(PrivateMethods)
  4.  
  5. @end
  6.  
  7. @implementation AspectRatioGraphicsChange
  8.  
  9. - (const char *)changeName
  10. {
  11.     return NXLocalStringFromTable("Operations", "Natural Size", NULL, "The operation of returning a graphical entity to its natural aspect ratio, e.g., an oval becomes a circle, a rectangle becomes a square.");
  12. }
  13.  
  14. - changeDetailClass
  15. {
  16.     return [DimensionsChangeDetail class];
  17. }
  18.  
  19. @end
  20.