Cog/Playlist/PlaylistView.h
Christopher Snowhill dd4a0b7af3 Playlist View: Save column settings differently
You will need to reset your settings after this, but then it should
stay put for the indefinite future.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2025-01-26 01:17:47 -08:00

32 lines
656 B
Objective-C

//
// PlaylistView.h
// Cog
//
// Created by Vincent Spader on 3/20/05.
// Copyright 2005 Vincent Spader All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PlaybackController.h"
#import "PlaylistController.h"
#import "PlaylistLoader.h"
@interface PlaylistView : NSTableView {
IBOutlet PlaybackController *playbackController;
IBOutlet PlaylistController *playlistController;
IBOutlet PlaylistLoader *playlistLoader;
NSMenu *headerContextMenu;
NSTimer *syncTimer;
}
- (IBAction)toggleColumn:(id)sender;
- (IBAction)scrollToCurrentEntry:(id)sender;
- (IBAction)refreshCurrentTrack:(id)sender;
- (IBAction)refreshTrack:(id)sender;
@end