-
Notifications
You must be signed in to change notification settings - Fork 55
/
PGColumnView.m
178 lines (156 loc) · 5.35 KB
/
PGColumnView.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
/* Copyright © 2007-2009, The Sequential Project
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 the the Sequential Project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE SEQUENTIAL PROJECT ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SEQUENTIAL PROJECT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
#import "PGColumnView.h"
// Views
#import "PGClipView.h"
#include <tgmath.h>
// Other Sources
#import "PGGeometry.h"
@implementation PGColumnView
#pragma mark -PGColumnView
- (NSUInteger)numberOfColumns
{
return [_views count];
}
@synthesize views = _views;
- (id)lastView
{
return [_views lastObject];
}
@synthesize columnWidth = _columnWidth;
- (void)setColumnWidth:(CGFloat)width
{
_columnWidth = round(width);
[self layout];
}
#pragma mark-
- (id)viewAtIndex:(NSUInteger)index
{
return [_views objectAtIndex:index];
}
#pragma mark -
- (void)addColumnWithView:(NSView *)aView
{
[self insertColumnWithView:aView atIndex:[_views count]];
}
- (void)insertColumnWithView:(NSView *)aView atIndex:(NSUInteger)index
{
NSParameterAssert(aView);
NSParameterAssert([_views indexOfObjectIdenticalTo:aView] == NSNotFound);
PGClipView *const clip = [[[PGClipView alloc] init] autorelease];
[_clipViews insertObject:clip atIndex:index];
[_views insertObject:aView atIndex:index];
[_view addSubview:clip];
[clip setDelegate:self];
[clip setBackgroundColor:nil];
[clip setShowsBorder:NO];
[clip setDocumentView:aView];
[self layout];
[aView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
[aView setFrameSize:NSMakeSize(NSWidth([clip bounds]), NSHeight([aView frame]))];
[self scrollToTopOfColumnWithView:aView];
}
- (void)removeColumnsAfterView:(NSView *)aView
{
NSUInteger const i = aView ? [_views indexOfObject:aView] : 0;
NSParameterAssert(NSNotFound != i);
if([_views count] <= i + 1) return;
while([_views count] > i + 1) {
PGClipView *const clip = [_clipViews lastObject];
[clip setDocumentView:nil];
[clip removeFromSuperview];
[_clipViews removeLastObject];
[_views removeLastObject];
}
[self layout];
return;
}
#pragma mark -
- (void)scrollToTopOfColumnWithView:(NSView *)aView
{
[[_clipViews objectAtIndex:[_views indexOfObjectIdenticalTo:aView]] scrollToEdge:PGMaxYEdgeMask animation:PGAllowAnimation];
}
- (void)scrollToLastColumnAnimate:(BOOL)flag
{
[_clipView scrollToEdge:PGMaxXEdgeMask animation:flag ? PGPreferAnimation : PGNoAnimation];
}
#pragma mark -
- (void)layout
{
NSRect const b = [self bounds];
[_view setFrameSize:NSMakeSize(MAX(_columnWidth * [_views count], NSWidth(b)), NSHeight(b))];
NSRect const vb = [_view bounds];
NSUInteger i = 0;
NSUInteger const count = [_clipViews count];
for(; i < count; i++) [(NSView *)[_clipViews objectAtIndex:i] setFrame:NSMakeRect(NSMinX(vb) + _columnWidth * i, NSMinY(vb), _columnWidth, NSHeight(vb))];
[self setNeedsDisplay:YES];
}
#pragma mark -NSView
- (id)initWithFrame:(NSRect)aRect
{
if((self = [super initWithFrame:aRect])) {
_clipView = [[PGClipView alloc] initWithFrame:[self bounds]];
[_clipView setBackgroundColor:nil];
[_clipView setShowsBorder:NO];
[_clipView setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable];
[self addSubview:_clipView];
_view = [[NSView alloc] initWithFrame:NSZeroRect];
[_clipView setDocumentView:_view];
_clipViews = [[NSMutableArray alloc] init];
_views = [[NSMutableArray alloc] init];
_columnWidth = 128.0f + 12.0f;
}
return self;
}
- (void)setFrameSize:(NSSize)aSize
{
if(NSEqualSizes([self frame].size, aSize)) return;
[super setFrameSize:aSize];
[self layout];
}
#pragma mark -NSObject
- (id)init
{
return [self initWithFrame:NSZeroRect];
}
- (void)dealloc
{
[_clipView release];
[_view release];
[_clipViews release];
[_views release];
[super dealloc];
}
#pragma mark -<PGClipViewDelegate>
- (BOOL)clipView:(PGClipView *)sender handleMouseEvent:(NSEvent *)anEvent first:(BOOL)flag
{
NSUInteger const i = [_clipViews indexOfObjectIdenticalTo:sender];
if(NSNotFound == i) return NO;
[[_views objectAtIndex:i] mouseDown:anEvent];
return YES;
}
- (PGRectEdgeMask)clipView:(PGClipView *)sender directionFor:(PGPageLocation)pageLocation
{
return PGReadingDirectionAndLocationToRectEdgeMask(pageLocation, PGReadingDirectionLeftToRight);
}
@end