-
Notifications
You must be signed in to change notification settings - Fork 0
/
AugmentedScrollView.m
executable file
·112 lines (80 loc) · 3.04 KB
/
AugmentedScrollView.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
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
This file is part of Notational Velocity.
Notational Velocity 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.
Notational Velocity 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 Notational Velocity. If not, see <http://www.gnu.org/licenses/>. */
#import "AugmentedScrollView.h"
#import "GlobalPrefs.h"
@implementation DragSquareView
- (id)initWithFrame:(NSRect)frameRect {
if ((self = [super initWithFrame:frameRect]) != nil) {
dragImage = [[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:@"ListDividerDrag.png"]];
}
return self;
}
- (void)drawRect:(NSRect)rect {
[dragImage compositeToPoint:rect.origin operation:NSCompositeCopy];
}
- (void)resetCursorRects {
[self addCursorRect:[self bounds] cursor: [NSCursor resizeLeftRightCursor]];
}
- (BOOL)isOpaque {
return YES;
}
- (void)dealloc {
[dragImage release];
[super dealloc];
}
@end
@implementation AugmentedScrollView
- (void)awakeFromNib {
dragSquare = [[DragSquareView alloc] initWithFrame:NSMakeRect(0, 0, 15.0, 15.0)];
[[GlobalPrefs defaultPrefs] registerForSettingChange:@selector(setHorizontalLayout:sender:) withTarget:self];
if ((showDragSquare = [[GlobalPrefs defaultPrefs] horizontalLayout])) {
//add dragsquare subview to this view
[self addSubview:dragSquare positioned:NSWindowAbove relativeTo:self];
[self _positionDragSquare];
}
}
- (void)settingChangedForSelectorString:(NSString*)selectorString {
if ([selectorString isEqualToString:SEL_STR(setHorizontalLayout:sender:)]) {
if ((showDragSquare = [[GlobalPrefs defaultPrefs] horizontalLayout])) {
//add drag square
[self addSubview:dragSquare positioned:NSWindowAbove relativeTo:self];
} else {
//remove drag square
[dragSquare removeFromSuperview];
}
[self tile];
}
}
- (void)dealloc {
[dragSquare release];
[super dealloc];
}
- (BOOL)shouldDragWithPoint:(NSPoint)point sender:(id)sender {
BOOL inRect = NSMouseInRect([dragSquare convertPoint:point fromView:sender],
[dragSquare bounds], [dragSquare isFlipped]);
return showDragSquare && inRect;
}
- (void)_positionDragSquare {
NSSize oldSize = [[self verticalScroller] frame].size;
NSSize dragSize = [dragSquare frame].size;
[[self verticalScroller] setFrameSize:NSMakeSize(oldSize.width, oldSize.height - dragSize.height)];
NSRect newFrame = [[self verticalScroller] frame];
[dragSquare setFrameOrigin:NSMakePoint(NSMaxX(newFrame) - dragSize.width, NSMaxY(newFrame))];
}
- (void)tile {
[super tile];
if (showDragSquare) {
[self _positionDragSquare];
}
}
@end