This repository has been archived by the owner on May 24, 2019. It is now read-only.
forked from scrod/nv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AugmentedScrollView.m
executable file
·130 lines (99 loc) · 3.68 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided with
the distribution.
- Neither the name of Notational Velocity nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission. */
#import "ETTransparentScroller.h"
#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 (!IsLionOrLater) {
[self setVerticalScroller:[[ETTransparentScroller alloc]init]];
}
/*
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 (!IsLionOrLater) {
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 (!IsLionOrLater) {
if (![[self verticalScroller] isHidden]) {
NSRect vsRect = [[self verticalScroller] frame];
NSRect conRect = [[self contentView] frame];
NSView *wdContent = [[self contentView] retain];
conRect.size.width = conRect.size.width + vsRect.size.width;
[wdContent setFrame:conRect];
[wdContent release];
[[self verticalScroller] setFrame:vsRect];
}
}
/*if (showDragSquare) {
[self _positionDragSquare];
}*/
}
@end