forked from mattball/mbtablegrid
-
Notifications
You must be signed in to change notification settings - Fork 16
/
MBTableGridController.m
278 lines (204 loc) · 6.87 KB
/
MBTableGridController.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
Copyright (c) 2008 Matthew Ball - http://www.mattballdesign.com
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#import "MBTableGridController.h"
@interface NSMutableArray (SwappingAdditions)
- (void)moveObjectsAtIndexes:(NSIndexSet *)indexes toIndex:(NSUInteger)index;
@end
@implementation MBTableGridController
- (void)awakeFromNib
{
columnSampleWidths = @[@40, @50, @60, @70, @80, @90, @100, @110, @120, @130];
columns = [[NSMutableArray alloc] initWithCapacity:500];
// Add 10 columns
int i = 0;
while (i < 10) {
[self addColumn:self];
i++;
}
// Add 100 rows
int j = 0;
while (j < 100) {
[self addRow:self];
j++;
}
[tableGrid reloadData];
// Register to receive text strings
[tableGrid registerForDraggedTypes:@[NSStringPboardType]];
}
-(NSString *) genRandStringLength: (int) len
{
// Create alphanumeric table
NSString *letters = @"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
// Create mutable string
NSMutableString *randomString = [NSMutableString stringWithCapacity: len];
// Add random character to string
for (int i=0; i<len; i++) {
[randomString appendFormat: @"%C", [letters characterAtIndex: arc4random() % [letters length]]];
}
// return string
return randomString;
}
#pragma mark -
#pragma mark Protocol Methods
#pragma mark MBTableGridDataSource
- (NSUInteger)numberOfRowsInTableGrid:(MBTableGrid *)aTableGrid
{
if ([columns count] > 0) {
return [columns[0] count];
}
return 0;
}
- (NSUInteger)numberOfColumnsInTableGrid:(MBTableGrid *)aTableGrid
{
return [columns count];
}
- (id)tableGrid:(MBTableGrid *)aTableGrid objectValueForColumn:(NSUInteger)columnIndex row:(NSUInteger)rowIndex
{
if (columnIndex >= [columns count]) {
return nil;
}
NSMutableArray *column = columns[columnIndex];
if (rowIndex >= [column count]) {
return nil;
}
id value = column[rowIndex];
return value;
}
- (void)tableGrid:(MBTableGrid *)aTableGrid setObjectValue:(id)anObject forColumn:(NSUInteger)columnIndex row:(NSUInteger)rowIndex
{
if (columnIndex >= [columns count]) {
return;
}
NSMutableArray *column = columns[columnIndex];
if (rowIndex >= [column count]) {
return;
}
if (anObject == nil) {
anObject = @"";
}
column[rowIndex] = anObject;
}
- (float)tableGrid:(MBTableGrid *)aTableGrid setWidthForColumn:(NSUInteger)columnIndex
{
return (columnIndex < columnSampleWidths.count) ? [columnSampleWidths[columnIndex] floatValue] : 60;
}
-(NSColor *)tableGrid:(MBTableGrid *)aTableGrid backgroundColorForColumn:(NSUInteger)columnIndex row:(NSUInteger)rowIndex
{
if (rowIndex % 2 && columnIndex % 2)
return [NSColor colorWithDeviceRed:1.0f green:0.5f blue:0.5f alpha:1.0f];
else
return nil;
}
#pragma mark Dragging
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid writeColumnsWithIndexes:(NSIndexSet *)columnIndexes toPasteboard:(NSPasteboard *)pboard
{
return YES;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid canMoveColumns:(NSIndexSet *)columnIndexes toIndex:(NSUInteger)index
{
// Allow any column movement
return YES;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid moveColumns:(NSIndexSet *)columnIndexes toIndex:(NSUInteger)index
{
[columns moveObjectsAtIndexes:columnIndexes toIndex:index];
return YES;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid writeRowsWithIndexes:(NSIndexSet *)rowIndexes toPasteboard:(NSPasteboard *)pboard
{
return YES;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid canMoveRows:(NSIndexSet *)rowIndexes toIndex:(NSUInteger)index
{
// Allow any row movement
return YES;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid moveRows:(NSIndexSet *)rowIndexes toIndex:(NSUInteger)index
{
for (NSMutableArray *column in columns) {
[column moveObjectsAtIndexes:rowIndexes toIndex:index];
}
return YES;
}
- (NSDragOperation)tableGrid:(MBTableGrid *)aTableGrid validateDrop:(id <NSDraggingInfo>)info proposedColumn:(NSUInteger)columnIndex row:(NSUInteger)rowIndex
{
return NSDragOperationCopy;
}
- (BOOL)tableGrid:(MBTableGrid *)aTableGrid acceptDrop:(id <NSDraggingInfo>)info column:(NSUInteger)columnIndex row:(NSUInteger)rowIndex
{
NSPasteboard *pboard = [info draggingPasteboard];
NSString *value = [pboard stringForType:NSStringPboardType];
[self tableGrid:aTableGrid setObjectValue:value forColumn:columnIndex row:rowIndex];
return YES;
}
#pragma mark MBTableGridDelegate
- (void)tableGridDidMoveRows:(NSNotification *)aNotification
{
NSLog(@"moved");
}
#pragma mark -
#pragma mark Subclass Methods
- (IBAction)addColumn:(id)sender
{
NSMutableArray *column = [[NSMutableArray alloc] init];
// Default number of rows
NSUInteger numberOfRows = 0;
// If there are already other columns, get the number of rows from one of them
if ([columns count] > 0) {
numberOfRows = [(NSMutableArray *)columns[0] count];
}
NSUInteger row = 0;
while (row < numberOfRows) {
// Insert blank items for each row
[column addObject:@""];
row++;
}
[columns addObject:column];
[tableGrid reloadData];
}
- (IBAction)addRow:(id)sender
{
for (NSMutableArray *column in columns) {
// Add a blank item to each row
[column addObject:@""];
}
[tableGrid reloadData];
}
@end
@implementation NSMutableArray (SwappingAdditions)
- (void)moveObjectsAtIndexes:(NSIndexSet *)indexes toIndex:(NSUInteger)index
{
NSArray *objects = [self objectsAtIndexes:indexes];
// Determine the new indexes for the objects
NSRange newRange = NSMakeRange(index, [indexes count]);
if (index > [indexes firstIndex]) {
newRange.location -= [indexes count];
}
NSIndexSet *newIndexes = [NSIndexSet indexSetWithIndexesInRange:newRange];
// Determine where the original objects are
NSIndexSet *originalIndexes = indexes;
// Remove the objects from their original locations
[self removeObjectsAtIndexes:originalIndexes];
// Insert the objects at their new location
[self insertObjects:objects atIndexes:newIndexes];
}
@end