-
Notifications
You must be signed in to change notification settings - Fork 33
/
MBCoverFlowViewController.m
90 lines (71 loc) · 3.23 KB
/
MBCoverFlowViewController.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
/*
The MIT License
Copyright (c) 2009 Matthew Ball
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 "MBCoverFlowViewController.h"
#import "MBCoverFlowView.h"
@implementation MBCoverFlowViewController
- (void)awakeFromNib
{
NSViewController *labelViewController = [[NSViewController alloc] initWithNibName:nil bundle:nil];
NSTextField *label = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 10, 10)];
[label setBordered:NO];
[label setBezeled:NO];
[label setEditable:NO];
[label setSelectable:NO];
[label setDrawsBackground:NO];
[label setTextColor:[NSColor whiteColor]];
[label setFont:[NSFont boldSystemFontOfSize:12.0]];
[label setAutoresizingMask:NSViewWidthSizable];
[label setAlignment:NSCenterTextAlignment];
[label sizeToFit];
NSRect labelFrame = [label frame];
labelFrame.size.width = 400;
[label setFrame:labelFrame];
[labelViewController setView:label];
[label bind:@"value" toObject:labelViewController withKeyPath:@"representedObject.name" options:nil];
[label release];
[(MBCoverFlowView *)self.view setAccessoryController:labelViewController];
[labelViewController release];
[(MBCoverFlowView *)self.view setImageKeyPath:@"image"];
[(MBCoverFlowView *)self.view setShowsScrollbar:YES];
[NSThread detachNewThreadSelector:@selector(loadImages) toTarget:self withObject:nil];
}
- (void)loadImages
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSMutableArray *images = [NSMutableArray array];
NSString *file;
NSDirectoryEnumerator *dirEnum = [[NSFileManager defaultManager] enumeratorAtPath:@"/Library/Desktop Pictures/Nature"];
int count = 0;
while ((file = [dirEnum nextObject]))
{
NSImage *image = [[NSImage alloc] initWithContentsOfFile:[@"/Library/Desktop Pictures/Nature" stringByAppendingPathComponent:file]];
if (image != nil) {
// Scale down the image -- CoreAnimation doesn't like huge images
[image setSize:NSMakeSize([image size].width/2, [image size].height/2)];
NSDictionary *imageInfo = [NSDictionary dictionaryWithObjectsAndKeys:image, @"image", file, @"name", nil];
[images addObject:imageInfo];
}
[image release];
[(MBCoverFlowView *)self.view performSelectorOnMainThread:@selector(setContent:) withObject:images waitUntilDone:NO];
count++;
}
[pool release];
}
@end