forked from dev2dev/BezierBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyDocument.m
104 lines (82 loc) · 3.29 KB
/
MyDocument.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
//
// MyDocument.m
// BezierBuilder
//
// Created by Dave DeLong on 7/7/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import "MyDocument.h"
#import "BezierPoint.h"
#import "CodeBuilder.h"
#import "NSBezierPathCodeBuilder.h"
#import "CGPathRefCodeBuilder.h"
@implementation MyDocument
@synthesize bezierView, bezierCodeView;
@synthesize codeOption;
@synthesize originControl;
@synthesize codeStyleControl;
- (void) rebuildSteps {
Class builderClass = Nil;
if ([codeStyleControl selectedSegment] == 0) {
builderClass = [NSBezierPathCodeBuilder class];
}
else {
builderClass = [CGPathRefCodeBuilder class];
}
CodeBuilder *builder = [[builderClass alloc] init];
[builder setBezierPoints:[bezierView bezierPoints]];
if ([originControl selectedSegment] == 1) {
[builder setYOrigin:[bezierView bounds].size.height];
}
else {
[builder setYOrigin:0.0];
}
[bezierCodeView setString:[builder codeForBezierPoints]];
[builder release];
}
- (void) codeOptionChanged:(id)sender {
[self rebuildSteps];
}
- (void) elementsDidChangeInBezierView:(BezierView *)view {
[self rebuildSteps];
[bezierView setNeedsDisplay:YES];
}
- (id)init
{
self = [super init];
if (self) {
}
return self;
}
- (NSString *)windowNibName
{
// Override returning the nib file name of the document
// If you need to use a subclass of NSWindowController or if your document supports multiple NSWindowControllers, you should remove this method and override -makeWindowControllers instead.
return @"MyDocument";
}
- (void)windowControllerDidLoadNib:(NSWindowController *) aController
{
[super windowControllerDidLoadNib:aController];
// Add any code here that needs to be executed once the windowController has loaded the document's window.
}
- (NSData *)dataOfType:(NSString *)typeName error:(NSError **)outError
{
// Insert code here to write your document to data of the specified type. If the given outError != NULL, ensure that you set *outError when returning nil.
// You can also choose to override -fileWrapperOfType:error:, -writeToURL:ofType:error:, or -writeToURL:ofType:forSaveOperation:originalContentsURL:error: instead.
// For applications targeted for Panther or earlier systems, you should use the deprecated API -dataRepresentationOfType:. In this case you can also choose to override -fileWrapperRepresentationOfType: or -writeToFile:ofType: instead.
if ( outError != NULL ) {
*outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL];
}
return nil;
}
- (BOOL)readFromData:(NSData *)data ofType:(NSString *)typeName error:(NSError **)outError
{
// Insert code here to read your document from the given data of the specified type. If the given outError != NULL, ensure that you set *outError when returning NO.
// You can also choose to override -readFromFileWrapper:ofType:error: or -readFromURL:ofType:error: instead.
// For applications targeted for Panther or earlier systems, you should use the deprecated API -loadDataRepresentation:ofType. In this case you can also choose to override -readFromFile:ofType: or -loadFileWrapperRepresentation:ofType: instead.
if ( outError != NULL ) {
*outError = [NSError errorWithDomain:NSOSStatusErrorDomain code:unimpErr userInfo:NULL];
}
return YES;
}
@end