forked from bububa/MongoHub-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResultsOutlineViewController.m
151 lines (128 loc) · 3.68 KB
/
ResultsOutlineViewController.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
//
// ResultsOutlineViewController.m
// MongoHub
//
// Created by Syd on 10-4-26.
// Copyright 2010 MusicPeace.ORG. All rights reserved.
//
#import "ResultsOutlineViewController.h"
@implementation ResultsOutlineViewController
@synthesize myOutlineView;
@synthesize results;
- (id)init
{
if (self = [super init]) {
results = [[NSMutableArray alloc] init];
}
return self;
}
- (void)dealloc {
[myOutlineView deselectAll:nil];
[myOutlineView release];
[results release];
[super dealloc];
}
- (void)awakeFromNib
{
[myOutlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO];
}
#pragma mark -
#pragma mark NSOutlineView dataSource methods
// Returns the child item at the specified index of a given item.
- (id)outlineView:(NSOutlineView *)outlineView
child:(int)index
ofItem:(id)item
{
// If the item is the root item, return the corresponding mailbox object
if([outlineView levelForItem:item] == -1)
{
return [results objectAtIndex:index];
}
// If the item is a root-level item (ie mailbox)
return [[item objectForKey:@"child" ] objectAtIndex:index];
}
// Returns a Boolean value that indicates wheter a given item is expandable.
- (BOOL)outlineView:(NSOutlineView *)outlineView
isItemExpandable:(id)item
{
// If the item is a root-level item (ie mailbox) and it has emails in it, return true
if(([[item objectForKey:@"child"] count] != 0))
return true;
else
return false;
}
// Returns the number of child items encompassed by a given item.
- (int)outlineView:(NSOutlineView *)outlineView
numberOfChildrenOfItem:(id)item
{
// If the item is the root item, return the number of mailboxes
if([outlineView levelForItem:item] == -1)
{
return [results count];
}
// If the item is a root-level item (ie mailbox)
return [[item objectForKey:@"child" ] count];
}
// Return the data object associated with the specified item.
- (id)outlineView:(NSOutlineView *)outlineView
objectValueForTableColumn:(NSTableColumn *)tableColumn
byItem:(id)item
{
if([[tableColumn identifier] isEqualToString:@"name"])
{
return [item objectForKey:@"name"];
}
else if([[tableColumn identifier] isEqualToString:@"value"])
return [item objectForKey:@"value"];
else if([[tableColumn identifier] isEqualToString:@"type"])
return [item objectForKey:@"type"];
/*switch([outlineView levelForItem:item])
{
// If the item is a root-level item
case 0:
if([[tableColumn identifier] isEqualToString:@"name"])
return [item objectForKey:@"name" ];
break;
case 1:
if([[tableColumn identifier] isEqualToString:@"name"])
{
return [item objectForKey:@"name"];
}
else if([[tableColumn identifier] isEqualToString:@"value"])
return [item objectForKey:@"value"];
else if([[tableColumn identifier] isEqualToString:@"type"])
return [item objectForKey:@"type"];
break;
}*/
return nil;
}
#pragma mark -
#pragma mark NSOutlineView delegate methods
- (void)outlineViewSelectionDidChange:(NSNotification *)notification
{
switch([myOutlineView selectedRow])
{
case -1:
break;
default:{
id currentItem = [myOutlineView itemAtRow:[myOutlineView selectedRow]];
if ([myOutlineView isItemExpanded:currentItem]) {
[myOutlineView collapseItem:currentItem collapseChildren:YES];
}else {
[myOutlineView expandItem:currentItem expandChildren:YES];
}
break;
}
}
}
#pragma mark helper methods
- (id)rootForItem:(id)item
{
id parentItem = [myOutlineView parentForItem:item];
if (parentItem) {
return [self rootForItem:parentItem];
}else {
return item;
}
}
@end