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-01-20 15:22:03 +00:00
|
|
|
#import "PlaybackController.h"
|
2005-06-02 18:16:43 +00:00
|
|
|
#import "PlaylistController.h"
|
2013-10-13 05:08:34 +00:00
|
|
|
#import "PlaylistLoader.h"
|
2005-06-02 18:16:43 +00:00
|
|
|
|
2008-01-24 01:44:24 +00:00
|
|
|
@interface PlaylistView : NSTableView {
|
2022-02-07 05:49:27 +00:00
|
|
|
IBOutlet PlaybackController *playbackController;
|
|
|
|
IBOutlet PlaylistController *playlistController;
|
|
|
|
IBOutlet PlaylistLoader *playlistLoader;
|
2021-01-30 23:14:08 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
NSMenu *headerContextMenu;
|
2005-06-02 18:16:43 +00:00
|
|
|
}
|
|
|
|
|
2007-02-17 19:33:31 +00:00
|
|
|
- (IBAction)toggleColumn:(id)sender;
|
2006-06-19 00:39:41 +00:00
|
|
|
|
2007-05-26 14:09:03 +00:00
|
|
|
- (IBAction)scrollToCurrentEntry:(id)sender;
|
|
|
|
|
2022-02-09 03:56:39 +00:00
|
|
|
- (IBAction)refreshCurrentTrack:(id)sender;
|
2022-06-17 17:24:45 +00:00
|
|
|
- (IBAction)refreshTrack:(id)sender;
|
2022-02-09 03:56:39 +00:00
|
|
|
|
2005-06-02 18:16:43 +00:00
|
|
|
@end
|