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