26 lines
567 B
C
26 lines
567 B
C
|
//
|
||
|
// SideBarController.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 6/21/08.
|
||
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "SideViewController.h"
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@class PlaylistLoader;
|
||
|
@class PlaybackController;
|
||
|
@class FileTreeOutlineView;
|
||
|
@interface FileTreeViewController : SideViewController {
|
||
|
IBOutlet PlaylistLoader *playlistLoader;
|
||
|
IBOutlet PlaybackController *playbackController;
|
||
|
IBOutlet FileTreeOutlineView *fileTreeOutlineView;
|
||
|
}
|
||
|
|
||
|
- (FileTreeOutlineView *)outlineView;
|
||
|
|
||
|
- (IBAction)chooseRootFolder:(id)sender;
|
||
|
|
||
|
@end
|