2008-02-17 15:59:54 -03:00
|
|
|
//
|
|
|
|
// FileTreeController.m
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/17/08.
|
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "FileTreeWindowController.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation FileTreeWindowController
|
|
|
|
|
|
|
|
- (id)init
|
|
|
|
{
|
|
|
|
return [super initWithWindowNibName:@"FileTreePanel"];
|
|
|
|
}
|
|
|
|
|
2008-02-20 16:36:34 -03:00
|
|
|
- (void)addToPlaylist:(NSArray *)urls
|
|
|
|
{
|
|
|
|
[playlistLoader addURLs:urls sort:NO];
|
|
|
|
}
|
2008-02-17 15:59:54 -03:00
|
|
|
|
|
|
|
@end
|