2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
// PlaylistView.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/20/05.
|
2005-07-02 17:02:06 -04:00
|
|
|
// Copyright 2005 Vincent Spader All rights reserved.
|
2005-06-02 14:16:43 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2006-04-12 23:20:31 -04:00
|
|
|
#import "AppController.h"
|
2006-01-20 12:22:03 -03:00
|
|
|
#import "PlaybackController.h"
|
2005-06-02 14:16:43 -04:00
|
|
|
#import "PlaylistController.h"
|
|
|
|
|
|
|
|
@interface PlaylistView : NSTableView {
|
|
|
|
|
2006-01-20 12:22:03 -03:00
|
|
|
IBOutlet PlaybackController *playbackController;
|
2005-06-02 14:16:43 -04:00
|
|
|
IBOutlet PlaylistController *playlistController;
|
|
|
|
|
2006-06-04 20:06:27 -04:00
|
|
|
NSArray *_tableColumnsCache;
|
2006-06-04 15:44:06 -04:00
|
|
|
NSMutableArray *_removedColumns;
|
2005-06-02 14:16:43 -04:00
|
|
|
}
|
|
|
|
|
2006-05-29 19:03:58 -04:00
|
|
|
- (IBAction)sortByPath:(id)sender;
|
|
|
|
- (IBAction)shufflePlaylist:(id)sender;
|
|
|
|
|
|
|
|
|
2005-06-02 14:16:43 -04:00
|
|
|
@end
|