2008-02-17 15:59:54 -03:00
|
|
|
//
|
|
|
|
// FileTreeController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/17/08.
|
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2008-02-20 16:36:34 -03:00
|
|
|
#import "PlaylistLoader.h"
|
2008-02-17 15:59:54 -03:00
|
|
|
|
2008-02-20 16:36:34 -03:00
|
|
|
@class PlaylistLoader;
|
2008-06-21 00:05:30 -04:00
|
|
|
@class SideView;
|
2008-02-17 15:59:54 -03:00
|
|
|
|
2008-06-21 00:05:30 -04:00
|
|
|
@interface FileTreeViewController : NSObject {
|
|
|
|
IBOutlet SideView *controller;
|
2008-02-20 20:22:39 -03:00
|
|
|
IBOutlet NSOutlineView *outlineView;
|
2008-02-17 15:59:54 -03:00
|
|
|
}
|
|
|
|
|
2008-02-20 20:22:39 -03:00
|
|
|
- (IBAction)addToPlaylist:(id)sender;
|
2008-02-20 16:36:34 -03:00
|
|
|
|
2008-02-17 15:59:54 -03:00
|
|
|
@end
|