2008-02-17 18:59:54 +00: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 19:36:34 +00:00
|
|
|
#import "PlaylistLoader.h"
|
2008-02-17 18:59:54 +00:00
|
|
|
|
2008-02-20 19:36:34 +00:00
|
|
|
@class PlaylistLoader;
|
2008-02-17 18:59:54 +00:00
|
|
|
|
|
|
|
@interface FileTreeWindowController : NSWindowController {
|
2008-02-20 19:36:34 +00:00
|
|
|
IBOutlet PlaylistLoader *playlistLoader;
|
2008-02-20 23:22:39 +00:00
|
|
|
IBOutlet NSOutlineView *outlineView;
|
2008-02-17 18:59:54 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 23:22:39 +00:00
|
|
|
- (IBAction)addToPlaylist:(id)sender;
|
2008-02-21 10:45:09 +00:00
|
|
|
- (IBAction)toggleWindow:(id)sender;
|
2008-02-20 19:36:34 +00:00
|
|
|
|
2008-02-17 18:59:54 +00:00
|
|
|
@end
|