-
Notifications
You must be signed in to change notification settings - Fork 10
/
Rik+Scroller.m
140 lines (123 loc) · 3.18 KB
/
Rik+Scroller.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
#include "Rik.h"
#include "RikScrollerKnobCell.h"
#include "RikScrollerKnobSlotCell.h"
#include "RikScrollerArrowCell.h"
@interface Rik(RikScroller)
@end
@implementation Rik(RikScroller)
/* NSScroller themeing. */
- (NSButtonCell*) cellForScrollerArrow: (NSScrollerArrow)arrow
horizontal: (BOOL)horizontal
{
RikScrollerArrowCell *cell;
NSString *name;
cell = [RikScrollerArrowCell new];
[cell setBezelStyle: NSRoundRectBezelStyle];
if (horizontal)
{
if (arrow == NSScrollerDecrementArrow)
{
[cell setHighlightsBy:
NSChangeBackgroundCellMask | NSContentsCellMask];
[cell setImage: [NSImage imageNamed: @"common_ArrowLeft"]];
[cell setImagePosition: NSImageOnly];
name = GSScrollerLeftArrow;
[cell setArrowType: RikScrollerArrowLeft];
}
else
{
[cell setHighlightsBy:
NSChangeBackgroundCellMask | NSContentsCellMask];
[cell setImage: [NSImage imageNamed: @"common_ArrowRight"]];
[cell setImagePosition: NSImageOnly];
name = GSScrollerRightArrow;
[cell setArrowType: RikScrollerArrowRight];
}
}
else
{
if (arrow == NSScrollerDecrementArrow)
{
[cell setHighlightsBy:
NSChangeBackgroundCellMask | NSContentsCellMask];
[cell setImage: [NSImage imageNamed: @"common_ArrowUp"]];
[cell setImagePosition: NSImageOnly];
name = GSScrollerUpArrow;
[cell setArrowType: RikScrollerArrowUp];
}
else
{
[cell setHighlightsBy:
NSChangeBackgroundCellMask | NSContentsCellMask];
[cell setImage: [NSImage imageNamed: @"common_ArrowDown"]];
[cell setImagePosition: NSImageOnly];
name = GSScrollerDownArrow;
[cell setArrowType: RikScrollerArrowDown];
}
}
[self setName: name forElement: cell temporary: YES];
RELEASE(cell);
return cell;
}
- (NSCell*) cellForScrollerKnob: (BOOL)horizontal
{
NSButtonCell *cell;
cell = [RikScrollerKnobCell new];
[cell setButtonType: NSMomentaryChangeButton];
[cell setBezelStyle: NSRoundedBezelStyle];
[cell setImagePosition: NSImageOnly];
[cell setTitle: @""];
if (horizontal)
{
[self setName: GSScrollerHorizontalKnob forElement: cell temporary: YES];
}
else
{
[self setName: GSScrollerVerticalKnob forElement: cell temporary: YES];
}
RELEASE(cell);
return cell;
}
- (NSCell*) cellForScrollerKnobSlot: (BOOL)horizontal
{
GSDrawTiles *tiles;
RikScrollerKnobSlotCell *cell;
NSColor *color;
NSString *name;
if (horizontal)
{
name = GSScrollerHorizontalSlot;
}
else
{
name = GSScrollerVerticalSlot;
}
tiles = [self tilesNamed: name state: GSThemeNormalState];
color = [self colorNamed: name state: GSThemeNormalState];
cell = [RikScrollerKnobSlotCell new];
[cell setBordered: false];
[cell setTitle: nil];
[cell setHorizontal: horizontal];
[self setName: name forElement: cell temporary: YES];
if (color == nil)
{
color = [NSColor scrollBarColor];
}
[cell setBackgroundColor: color];
RELEASE(cell);
return cell;
}
// REMEMBER THIS SETTING
- (float) defaultScrollerWidth
{
return 16.0;
}
- (BOOL) scrollViewUseBottomCorner
{
return YES;
}
- (BOOL) scrollViewScrollersOverlapBorders
{
return NO;
}
@end