2008-06-21 05:09:29 +00:00
|
|
|
//
|
|
|
|
// SplitViewController.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 6/20/08.
|
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@class SideView;
|
|
|
|
@class PlaylistLoader;
|
|
|
|
|
|
|
|
@interface SideViewController : NSObject {
|
|
|
|
IBOutlet NSMenu *sideViewMenu;
|
|
|
|
IBOutlet PlaylistLoader *playlistLoader;
|
|
|
|
|
|
|
|
NSMutableDictionary *sideViewNibs;
|
|
|
|
NSMutableDictionary *sideViews;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (SideView *)sideViewForTitle:(NSString *)title;
|
2008-06-21 19:54:01 +00:00
|
|
|
- (void)selectSideViewWithTitle:(NSString *)title; //To be overridden by subclass
|
2008-06-21 05:09:29 +00:00
|
|
|
|
|
|
|
//Helper for adding files to the playlist
|
|
|
|
- (void) addToPlaylist:(NSArray *)urls;
|
2008-06-21 19:54:01 +00:00
|
|
|
|
2008-06-21 05:09:29 +00:00
|
|
|
@end
|