-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorkspaceItemView.j
More file actions
228 lines (188 loc) · 5.53 KB
/
Copy pathWorkspaceItemView.j
File metadata and controls
228 lines (188 loc) · 5.53 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// (c) 2010-2011 by Anton Korenyushkin
@import "Data.j"
@implementation Buffer (WorkspaceItemView)
- (void)close // public
{
[manager closeBuffer:self askToSave:YES];
}
@end
@implementation FileBuffer (WorkspaceItemView)
- (CPString)imageName // public
{
return "File";
}
@end
@implementation EvalBuffer (WorkspaceItemView)
- (CPString)imageName // public
{
return "Eval";
}
@end
@implementation CommitBuffer (WorkspaceItemView)
- (CPString)imageName // public
{
return "Commit";
}
@end
@implementation GitBuffer (WorkspaceItemView)
- (CPString)imageName // public
{
return "Git";
}
@end
@implementation CloseButton : CPControl
{
BOOL isModified;
BOOL isActive;
BOOL isSelected;
BOOL isHighlighted;
}
- (void)setModified:(BOOL)flag // public
{
isModified = flag;
[self setNeedsDisplay:YES];
}
- (void)setActive:(BOOL)flag // public
{
isActive = flag;
[self setNeedsDisplay:YES];
}
- (void)setSelected:(BOOL)flag // public
{
isSelected = flag;
[self setNeedsDisplay:YES];
}
- (void)setHighlighted:(BOOL)flag // private
{
isHighlighted = flag;
[self setNeedsDisplay:YES];
}
- (void)mouseEntered:(CPEvent)event // protected
{
[self setHighlighted:YES];
[super mouseEntered:event];
}
- (void)mouseExited:(CPEvent)event // protected
{
[self setHighlighted:NO];
[super mouseExited:event];
}
- (void)drawEllipseInRect:(CGRect)rect // private
{
var context = [[CPGraphicsContext currentContext] graphicsPort];
CGContextBeginPath(context);
CGContextAddEllipseInRect(context, rect);
CGContextClosePath(context);
CGContextSetFillColor(context, isSelected ? [CPColor whiteColor] : [CPColor grayColor]);
CGContextFillPath(context);
}
- (void)drawRect:(CGRect)rect // public
{
if (!isActive) {
if (isModified)
[self drawEllipseInRect:CGRectMake(5, 5, 6, 6)];
return;
}
if (isHighlighted)
[self drawEllipseInRect:CGRectMake(1, 1, 14, 14)];
var context = [[CPGraphicsContext currentContext] graphicsPort];
CGContextBeginPath(context);
CGContextMoveToPoint(context, 5, 4);
[[8, 7], [11, 4], [12, 5], [9, 8], [12, 11], [11, 12], [8, 9], [5, 12], [4, 11], [7, 8], [4, 5], [5, 4]].forEach(
function (pair) { CGContextAddLineToPoint(context, pair[0], pair[1]); });
CGContextClosePath(context);
CGContextSetFillColor(context, !isSelected == !isHighlighted ? [CPColor grayColor] : [CPColor whiteColor]);
CGContextFillPath(context);
}
@end
var WhiteSpinnerImage;
var BlueSpinnerImage;
@implementation WorkspaceItemView : CPView
{
Buffer buffer;
}
+ (void)initialize // private
{
WhiteSpinnerImage = [CPImage imageFromPath:"WhiteSpinner16.gif"];
BlueSpinnerImage = [CPImage imageFromPath:"BlueSpinner16.gif"];
}
- (id)init // public
{
if (self = [super init]) {
var backView = [CPView new];
[backView setAutoresizingMask:CPViewWidthSizable | CPViewHeightSizable];
[self addSubview:backView];
var closeButton = [[CloseButton alloc] initWithFrame:CGRectMake(2, 3, 16, 16)];
[closeButton setAction:@selector(close)];
[self addSubview:closeButton];
[self addSubview:[[CPImageView alloc] initWithFrame:CGRectMake(18, 3, 16, 16)]];
[self addSubview:[[CPTextField alloc] initWithFrame:CGRectMake(36, 3, 10000, 18)]];
}
return self;
}
- (CloseButton)closeButton // private
{
return [self subviews][1];
}
- (CPImageView)imageView // private
{
return [self subviews][2];
}
- (CPTextField)textField // private
{
return [self subviews][3];
}
- (void)setObjectValue:(Buffer)aBuffer // public
{
[buffer removeObserver:self forKeyPath:"isModified"];
[buffer removeObserver:self forKeyPath:"isProcessing"];
buffer = aBuffer;
[[self closeButton] setTarget:buffer];
[[self textField] setStringValue:[buffer name]];
[buffer addObserver:self forKeyPath:"isModified" options:CPKeyValueObservingOptionInitial];
[buffer addObserver:self forKeyPath:"isProcessing" options:CPKeyValueObservingOptionInitial];
}
- (void)observeValueForKeyPath:(CPString)keyPath ofObject:(id)object change:(CPDictionary)change context:(id)context // private
{
switch (keyPath) {
case "isModified":
[[self closeButton] setModified:buffer.isModified];
break;
case "isProcessing":
[[self imageView] setImage:(buffer.isProcessing
? ([self hasThemeState:CPThemeStateSelectedDataView] ? BlueSpinnerImage : WhiteSpinnerImage)
: [CPImage imageFromPath:[buffer imageName] + "16.png"])];
break;
}
}
- (BOOL)setThemeState:(CPThemeState)state // protected
{
if (state == CPThemeStateSelectedDataView) {
[[self closeButton] setSelected:YES];
[[self textField] setTextColor:[CPColor whiteColor]];
if (buffer.isProcessing)
[[self imageView] setImage:BlueSpinnerImage];
}
return [super setThemeState:state];
}
- (BOOL)unsetThemeState:(CPThemeState)state // protected
{
if (state == CPThemeStateSelectedDataView) {
[[self closeButton] setSelected:NO];
[[self textField] setTextColor:[CPColor blackColor]];
if (buffer.isProcessing)
[[self imageView] setImage:WhiteSpinnerImage];
}
return [super unsetThemeState:state];
}
- (void)mouseEntered:(CPEvent)event // protected
{
[[self closeButton] setActive:YES];
[super mouseEntered:event];
}
- (void)mouseExited:(CPEvent)event // protected
{
[[self closeButton] setActive:NO];
[super mouseExited:event];
}
@end