home *** CD-ROM | disk | FTP | other *** search
- #import "drawundo.h"
-
- @interface LineCapGraphicsChange(PrivateMethods)
-
- @end
-
- @implementation LineCapGraphicsChange
-
- - initGraphicView:aGraphicView lineCap:(int)aCapValue
- {
- [super initGraphicView:aGraphicView];
- capValue = aCapValue;
- return self;
- }
-
- - (const char *)changeName
- {
- return NXLocalStringFromTable("Operations", "Line Cap", NULL, "The operation of changing the roundedness of the end of a line.");
- }
-
- - changeDetailClass
- {
- return [LineCapChangeDetail class];
- }
-
- - (int)lineCap
- {
- return capValue;
- }
-
- @end
-