2008-02-17 15:59:54 -03:00
|
|
|
//
|
2009-03-07 18:31:44 -03:00
|
|
|
// SideBarController.h
|
2008-02-17 15:59:54 -03:00
|
|
|
// Cog
|
|
|
|
//
|
2009-03-07 18:31:44 -03:00
|
|
|
// Created by Vincent Spader on 6/21/08.
|
2008-02-17 15:59:54 -03:00
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-07 18:31:44 -03:00
|
|
|
#import "SideViewController.h"
|
2008-02-17 15:59:54 -03:00
|
|
|
|
2008-02-20 16:36:34 -03:00
|
|
|
@class PlaylistLoader;
|
2009-08-16 12:49:34 -04:00
|
|
|
@class PlaybackController;
|
2013-10-11 07:03:23 -03:00
|
|
|
@class FileTreeOutlineView;
|
2009-03-07 18:31:44 -03:00
|
|
|
@interface FileTreeViewController : SideViewController {
|
|
|
|
IBOutlet PlaylistLoader *playlistLoader;
|
2009-08-16 12:49:34 -04:00
|
|
|
IBOutlet PlaybackController *playbackController;
|
2013-10-11 07:03:23 -03:00
|
|
|
IBOutlet FileTreeOutlineView *fileTreeOutlineView;
|
2008-02-17 15:59:54 -03:00
|
|
|
}
|
|
|
|
|
2013-10-11 07:03:23 -03:00
|
|
|
- (FileTreeOutlineView*)outlineView;
|
|
|
|
|
2008-02-17 15:59:54 -03:00
|
|
|
@end
|