cog/Playlist/PlaylistController.h

74 lines
1.4 KiB
C
Raw Normal View History

2005-06-02 18:16:43 +00:00
//
// PlaylistController.h
// Cog
//
// Created by Vincent Spader on 3/18/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>
#import <Foundation/NSUndoManager.h>
2005-06-02 18:16:43 +00:00
#import "DNDArrayController.h"
@class PlaylistLoader;
@class PlaylistEntry;
@class EntriesController;
2005-06-02 18:16:43 +00:00
@interface PlaylistController : DNDArrayController {
IBOutlet PlaylistLoader *playlistLoader;
IBOutlet EntriesController *entriesController;
2006-04-13 18:40:23 +00:00
NSString *totalTimeDisplay;
2005-06-02 18:16:43 +00:00
NSMutableArray *shuffleList;
2005-06-02 18:16:43 +00:00
PlaylistEntry *currentEntry;
BOOL shuffle;
BOOL repeat;
int selectedRow;
2005-06-02 18:16:43 +00:00
}
2006-01-20 15:22:03 +00:00
//Private Methods
- (void)updateIndexesFromRow:(int) row;
2006-04-13 18:40:23 +00:00
- (void)updateTotalTime;
2006-01-20 15:22:03 +00:00
//PUBLIC METHODS
2005-06-02 18:16:43 +00:00
- (void)setShuffle:(BOOL)s;
- (BOOL)shuffle;
- (void)setRepeat:(BOOL)r;
- (BOOL)repeat;
/* Methods for undoing various actions */
- (NSUndoManager *)undoManager;
2005-06-02 18:16:43 +00:00
- (IBAction)takeShuffleFromObject:(id)sender;
- (IBAction)takeRepeatFromObject:(id)sender;
- (IBAction)sortByPath;
- (IBAction)randomizeList;
- (IBAction)showEntryInFinder:(id)sender;
- (IBAction)clearFilterPredicate:(id)sender;
- (IBAction)clear:(id)sender;
2006-04-13 18:40:23 +00:00
- (void)setTotalTimeDisplay:(NSString *)ttd;
- (NSString *)totalTimeDisplay;
2005-06-02 18:16:43 +00:00
//FUN PLAYLIST MANAGEMENT STUFF!
- (id)currentEntry;
2006-01-20 15:22:03 +00:00
- (void)setCurrentEntry:(PlaylistEntry *)pe;
2005-06-02 18:16:43 +00:00
2006-01-29 14:57:48 +00:00
- (BOOL)next;
- (BOOL)prev;
2006-01-20 15:22:03 +00:00
- (void)addShuffledListToBack;
- (void)addShuffledListToFront;
- (void)resetShuffleList;
2005-06-02 18:16:43 +00:00
- (PlaylistEntry *)entryAtIndex:(int)i;
2005-06-02 18:16:43 +00:00
@end