forked from ttscoff/nv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlueTransparentScroller.m
256 lines (210 loc) · 8.14 KB
/
BlueTransparentScroller.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
249
250
251
252
253
254
255
256
//
// BlueTransparentScroller.m
//
// Created by Brett Terpstra on 12/8/10.
// Copyright 2010 Circle Six Design. All rights reserved.
//
#import "BlueTransparentScroller.h"
// Vertical scroller
static NSImage *knobTop, *knobVerticalFill, *knobBottom, *slotTop, *slotVerticalFill, *slotBottom;
static float verticalPaddingLeft = 2.0;
static float verticalPaddingRight = 4.0;
static float verticalPaddingTop = 8.0;
static float verticalPaddingBottom = 8.0;
static float minKnobHeight;
// Horizontal scroller
static NSImage *knobLeft, *knobHorizontalFill, *knobRight, *slotLeft, *slotHorizontalFill, *slotRight;
static float horizontalPaddingLeft = 2.0;
static float horizontalPaddingRight = 2.0;
static float horizontalPaddingTop = 0.0;
static float horizontalPaddingBottom = 1.0;
static float minKnobWidth;
static NSColor *backgroundColor;
@interface BTTransparentScroller (BWTSPrivate)
- (void)drawKnobSlot;
@end
@interface NSScroller (BWTSPrivate)
- (NSRect)_drawingRectForPart:(NSScrollerPart)aPart;
@end
@implementation BlueTransparentScroller
+ (void)initialize
{
NSBundle *bundle = [NSBundle mainBundle];
// Vertical scroller
knobTop = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"greyscrollerverttop.tiff"]];
knobVerticalFill = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"greyscrollervertfill.tiff"]];
knobBottom = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"greyscrollervertbottom.tiff"]];
slotTop = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerSlotTop.tif"]];
slotVerticalFill = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"scrollbarblue.tif"]];
slotBottom = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerSlotBottom.tif"]];
// Horizontal scroller
knobLeft = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerKnobLeft.tif"]];
knobHorizontalFill = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerKnobHorizontalFill.tif"]];
knobRight = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerKnobRight.tif"]];
slotLeft = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerSlotLeft.tif"]];
slotHorizontalFill = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerSlotHorizontalFill.tif"]];
slotRight = [[NSImage alloc] initWithContentsOfFile:[bundle pathForImageResource:@"BTransparentScrollerSlotRight.tif"]];
backgroundColor = [[NSColor whiteColor] retain];
minKnobHeight = knobTop.size.height + knobVerticalFill.size.height + knobBottom.size.height + 40;
minKnobWidth = knobLeft.size.width + knobHorizontalFill.size.width + knobRight.size.width + 10;
}
- (void)setBackgroundColor:(NSColor*)bgcolor;
{
[backgroundColor release];
backgroundColor = [bgcolor retain];
}
- (id)initWithFrame:(NSRect)frameRect;
{
if ((self = [super initWithFrame:frameRect]))
{
[self setArrowsPosition:NSScrollerArrowsNone];
if ([self bounds].size.width / [self bounds].size.height < 1)
isVertical = YES;
else
isVertical = NO;
}
return self;
}
- (id)initWithCoder:(NSCoder *)decoder;
{
if ((self = [super initWithCoder:decoder]))
{
[self setArrowsPosition:NSScrollerArrowsNone];
if ([self bounds].size.width / [self bounds].size.height < 1)
isVertical = YES;
else
isVertical = NO;
}
return self;
}
+ (CGFloat)scrollerWidth
{
return slotVerticalFill.size.width + verticalPaddingLeft + verticalPaddingRight;
}
+ (CGFloat)scrollerWidthForControlSize:(NSControlSize)controlSize
{
return slotVerticalFill.size.width + verticalPaddingLeft + verticalPaddingRight;
}
- (void)drawRect:(NSRect)aRect;
{
[backgroundColor set];
NSRectFill([self bounds]);
// Only draw if the slot is larger than the knob
if (isVertical && ([self bounds].size.height - verticalPaddingTop - verticalPaddingBottom + 1) > minKnobHeight)
{
[self drawKnobSlot];
if ([self knobProportion] > 0.0)
[self drawKnob];
}
else if (!isVertical && ([self bounds].size.width - horizontalPaddingLeft - horizontalPaddingRight + 1) > minKnobWidth)
{
[self drawKnobSlot];
if ([self knobProportion] > 0.0)
[self drawKnob];
}
}
- (void)drawKnobSlot;
{
NSRect slotRect = [self rectForPart:NSScrollerKnobSlot];
if (isVertical)
NSDrawThreePartImage(slotRect, slotVerticalFill, slotVerticalFill, slotVerticalFill, YES, NSCompositeSourceOver, 1, NO);
else
NSDrawThreePartImage(slotRect, slotLeft, slotHorizontalFill, slotRight, NO, NSCompositeSourceOver, 1, NO);
}
- (void)drawKnob;
{
NSRect knobRect = [self rectForPart:NSScrollerKnob];
if (isVertical)
NSDrawThreePartImage(knobRect, knobTop, knobVerticalFill, knobBottom, YES, NSCompositeSourceOver, 1, NO);
else
NSDrawThreePartImage(knobRect, knobLeft, knobHorizontalFill, knobRight, NO, NSCompositeSourceOver, 1, NO);
}
- (NSRect)_drawingRectForPart:(NSScrollerPart)aPart;
{
// Call super even though we're not using its value (has some side effects we need)
[super _drawingRectForPart:aPart];
// Return our own rects rather than use the default behavior
return [self rectForPart:aPart];
}
- (NSRect)rectForPart:(NSScrollerPart)aPart;
{
switch (aPart)
{
case NSScrollerNoPart:
return [self bounds];
break;
case NSScrollerKnob:
{
NSRect knobRect;
NSRect slotRect = [self rectForPart:NSScrollerKnobSlot];
if (isVertical)
{
float knobHeight = roundf(slotRect.size.height * [self knobProportion]);
if (knobHeight < minKnobHeight)
knobHeight = minKnobHeight;
float knobY = slotRect.origin.y + roundf((slotRect.size.height - knobHeight) * [self floatValue]);
knobRect = NSMakeRect(verticalPaddingLeft, knobY, slotRect.size.width, knobHeight);
}
else
{
float knobWidth = roundf(slotRect.size.width * [self knobProportion]);
if (knobWidth < minKnobWidth)
knobWidth = minKnobWidth;
float knobX = slotRect.origin.x + roundf((slotRect.size.width - knobWidth) * [self floatValue]);
knobRect = NSMakeRect(knobX, horizontalPaddingTop, knobWidth, slotRect.size.height);
}
return knobRect;
}
break;
case NSScrollerKnobSlot:
{
NSRect slotRect;
if (isVertical)
slotRect = NSMakeRect(verticalPaddingLeft, verticalPaddingTop, [self bounds].size.width - verticalPaddingLeft - verticalPaddingRight, [self bounds].size.height - verticalPaddingTop - verticalPaddingBottom);
else
slotRect = NSMakeRect(horizontalPaddingLeft, horizontalPaddingTop, [self bounds].size.width - horizontalPaddingLeft - horizontalPaddingRight, [self bounds].size.height - horizontalPaddingTop - horizontalPaddingBottom);
return slotRect;
}
break;
case NSScrollerIncrementLine:
return NSZeroRect;
break;
case NSScrollerDecrementLine:
return NSZeroRect;
break;
case NSScrollerIncrementPage:
{
NSRect incrementPageRect;
NSRect knobRect = [self rectForPart:NSScrollerKnob];
NSRect slotRect = [self rectForPart:NSScrollerKnobSlot];
NSRect decPageRect = [self rectForPart:NSScrollerDecrementPage];
if (isVertical)
{
float knobY = knobRect.origin.y + knobRect.size.height;
incrementPageRect = NSMakeRect(verticalPaddingLeft, knobY, knobRect.size.width, slotRect.size.height - knobRect.size.height - decPageRect.size.height);
}
else
{
float knobX = knobRect.origin.x + knobRect.size.width;
incrementPageRect = NSMakeRect(knobX, horizontalPaddingTop, (slotRect.size.width + horizontalPaddingLeft) - knobX, knobRect.size.height);
}
return incrementPageRect;
}
break;
case NSScrollerDecrementPage:
{
NSRect decrementPageRect;
NSRect knobRect = [self rectForPart:NSScrollerKnob];
if (isVertical)
decrementPageRect = NSMakeRect(verticalPaddingLeft, verticalPaddingTop, knobRect.size.width, knobRect.origin.y - verticalPaddingTop);
else
decrementPageRect = NSMakeRect(horizontalPaddingLeft, horizontalPaddingTop, knobRect.origin.x - horizontalPaddingLeft, knobRect.size.height);
return decrementPageRect;
}
break;
default:
break;
}
return NSZeroRect;
}
@end