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