-
Notifications
You must be signed in to change notification settings - Fork 1
/
MBSliderButton.m
248 lines (196 loc) · 6.97 KB
/
MBSliderButton.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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/*
Created on 28/02/2009
Copyright 2009 Max Howell <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define KNOB_WIDTH 38
#define HEIGHT 26
#define WIDTH 89
#define KNOB_MIN_X 0
#define KNOB_MAX_X (WIDTH-KNOB_WIDTH)
@interface MBKnobAnimation : NSAnimation
{
int start, range;
id delegate;
}
@end
@implementation MBKnobAnimation
-(id)initWithStart:(int)begin end:(int)end
{
[super init];
start = begin;
range = end - begin;
return self;
}
-(void)setCurrentProgress:(NSAnimationProgress)progress
{
int x = start+progress*range;
[super setCurrentProgress:progress];
[delegate performSelector:@selector(setPosition:) withObject:[NSNumber numberWithInteger:x]];
}
-(void)setDelegate:(id)d
{
delegate = d;
}
@end
#import "MBSliderButton.h"
@implementation MBSliderButton
-(void)awakeFromNib
{
surround = [[NSImage alloc] initByReferencingFile:[[prefpane bundle] pathForResource:@"button_surround" ofType:@"png"]];
knob = [[NSImage alloc] initByReferencingFile:[[prefpane bundle] pathForResource:@"button_knob" ofType:@"png"]];
state = false;
}
-(void)drawRect:(NSRect)rect
{
NSColor* darkColor = [NSColor colorWithDeviceRed:0.33 green:0.33 blue:0.33 alpha:1.0];
NSColor* lightColor = [NSColor colorWithDeviceRed:0.66 green:0.66 blue:0.66 alpha:1.0];
NSColor* darkGray = [NSColor colorWithDeviceRed:0.5 green:0.5 blue:0.5 alpha:1.0];
NSColor* lightGray = [NSColor colorWithDeviceRed:0.7 green:0.7 blue:0.7 alpha:1.0];
NSGradient* green_gradient = [[NSGradient alloc] initWithStartingColor:darkColor endingColor:lightColor];
NSGradient* gray_gradient = [[NSGradient alloc] initWithStartingColor:darkGray endingColor:lightGray];
[green_gradient drawInRect:NSMakeRect(0, location.y, location.x+10, HEIGHT) angle:270];
int x = location.x+KNOB_WIDTH-2;
[gray_gradient drawInRect:NSMakeRect(x, location.y, WIDTH-x, HEIGHT) angle:270];
NSPoint pt;
[surround drawAtPoint:NSMakePoint(0,0) fromRect:NSZeroRect
operation:NSCompositeSourceOver
fraction:1.0];
pt = location;
pt.x -= 2;
[knob drawAtPoint:pt fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
}
-(BOOL)isOpaque
{
return YES;
}
-(NSInteger)state
{
return state ? NSOnState : NSOffState;
}
-(void)animateTo:(int)x
{
MBKnobAnimation* a = [[MBKnobAnimation alloc] initWithStart:location.x end:x];
[a setDelegate:self];
if (location.x == 0 || location.x == KNOB_MAX_X){
[a setDuration:0.20];
[a setAnimationCurve:NSAnimationEaseInOut];
}else{
[a setDuration:0.35 * ((fabs(location.x-x))/KNOB_MAX_X)];
[a setAnimationCurve:NSAnimationLinear];
}
[a setAnimationBlockingMode:NSAnimationBlocking];
[a startAnimation];
[a release];
}
-(void)setPosition:(NSNumber*)x
{
location.x = [x intValue];
[self display];
}
-(void)setState:(NSInteger)newstate
{
[self setState:newstate animate:true];
}
-(void)setState:(NSInteger)newstate animate:(bool)animate
{
if(newstate == [self state])
return;
int x = newstate == NSOnState ? KNOB_MAX_X : 0;
//TODO animate if we are visible and otherwise don't
if(animate)
[self animateTo:x];
else
[self setNeedsDisplay:YES];
state = newstate == NSOnState ? true : false;
location.x = x;
}
-(void)offsetLocationByX:(float)x
{
location.x = location.x + x;
if (location.x < KNOB_MIN_X) location.x = KNOB_MIN_X;
if (location.x > KNOB_MAX_X) location.x = KNOB_MAX_X;
[self setNeedsDisplay:YES];
}
-(void)mouseDown:(NSEvent *)event
{
BOOL loop = YES;
// convert the initial click location into the view coords
NSPoint clickLocation = [self convertPoint:[event locationInWindow] fromView:nil];
// did the click occur in the draggable item?
if (NSPointInRect(clickLocation, [self bounds])) {
NSPoint newDragLocation;
// the tight event loop pattern doesn't require the use
// of any instance variables, so we'll use a local
// variable localLastDragLocation instead.
NSPoint localLastDragLocation;
// save the starting location as the first relative point
localLastDragLocation=clickLocation;
while (loop) {
// get the next event that is a mouse-up or mouse-dragged event
NSEvent *localEvent;
localEvent= [[self window] nextEventMatchingMask:NSLeftMouseUpMask | NSLeftMouseDraggedMask];
switch ([localEvent type]) {
case NSLeftMouseDragged:
// convert the new drag location into the view coords
newDragLocation = [self convertPoint:[localEvent locationInWindow]
fromView:nil];
// offset the item and update the display
[self offsetLocationByX:(newDragLocation.x-localLastDragLocation.x)];
// update the relative drag location;
localLastDragLocation = newDragLocation;
// support automatic scrolling during a drag
// by calling NSView's autoscroll: method
[self autoscroll:localEvent];
break;
case NSLeftMouseUp:
// mouse up has been detected,
// we can exit the loop
loop = NO;
if (memcmp(&clickLocation, &localLastDragLocation, sizeof(NSPoint)) == 0)
[self animateTo:state ? 0 : KNOB_MAX_X];
else if (location.x > 0 && location.x < KNOB_MAX_X)
[self animateTo:state ? KNOB_MAX_X : 0];
//TODO if let go of it halfway then slide to non destructive side
if(location.x == 0 && state || location.x == KNOB_MAX_X && !state){
state = !state;
// wanted to use self.action and self.target but both are null
// even though I set them up in IB! :(
[prefpane performSelector:@selector(startStopDaemon:) withObject:self];
}
// the rectangle has moved, we need to reset our cursor
// rectangle
[[self window] invalidateCursorRectsForView:self];
break;
default:
// Ignore any other kind of event.
break;
}
}
};
return;
}
-(BOOL)acceptsFirstResponder
{
return YES;
}
-(IBAction)moveLeft:(id)sender
{
[self offsetLocationByX:-10.0];
[[self window] invalidateCursorRectsForView:self];
}
-(IBAction)moveRight:(id)sender
{
[self offsetLocationByX:10.0];
[[self window] invalidateCursorRectsForView:self];
}
@end