mamburu: Happy New Year commit (which accidentally fixes #83 - enqueueing from FileTree now respects playlist settings while FileTree context menu items still do what they say and don't depend on playlist settings). Also, the code should be cleaned up a bit, but i'm too sleepy to do it now.
parent
85937086d2
commit
af76c33bb0
|
@ -17,6 +17,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)addToPlaylist:(id)sender;
|
- (IBAction)addToPlaylist:(id)sender;
|
||||||
|
- (IBAction)addToPlaylistExternal:(id)sender;
|
||||||
- (IBAction)setAsPlaylist:(id)sender;
|
- (IBAction)setAsPlaylist:(id)sender;
|
||||||
- (IBAction)playPauseResume:(NSObject *)id;
|
- (IBAction)playPauseResume:(NSObject *)id;
|
||||||
- (IBAction)showEntryInFinder:(id)sender;
|
- (IBAction)showEntryInFinder:(id)sender;
|
||||||
|
|
|
@ -14,18 +14,28 @@
|
||||||
|
|
||||||
- (IBAction)addToPlaylist:(id)sender
|
- (IBAction)addToPlaylist:(id)sender
|
||||||
{
|
{
|
||||||
NSUInteger index;
|
[self doAddToPlaylist:sender origin:URLOriginInternal];
|
||||||
NSIndexSet *selectedIndexes = [outlineView selectedRowIndexes];
|
}
|
||||||
NSMutableArray *urls = [[NSMutableArray alloc] init];
|
|
||||||
|
|
||||||
for (index = [selectedIndexes firstIndex];
|
- (void)doAddToPlaylist:(id)sender origin:(URLOrigin)origin
|
||||||
index != NSNotFound; index = [selectedIndexes indexGreaterThanIndex: index])
|
{
|
||||||
{
|
NSUInteger index;
|
||||||
[urls addObject:[[outlineView itemAtRow:index] URL]];
|
NSIndexSet *selectedIndexes = [outlineView selectedRowIndexes];
|
||||||
}
|
NSMutableArray *urls = [[NSMutableArray alloc] init];
|
||||||
|
|
||||||
[controller addToPlaylist:urls];
|
for (index = [selectedIndexes firstIndex];
|
||||||
[urls release];
|
index != NSNotFound; index = [selectedIndexes indexGreaterThanIndex: index])
|
||||||
|
{
|
||||||
|
[urls addObject:[[outlineView itemAtRow:index] URL]];
|
||||||
|
}
|
||||||
|
|
||||||
|
[controller doAddToPlaylist:urls origin:origin];
|
||||||
|
[urls release];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)addToPlaylistExternal:(id)sender
|
||||||
|
{
|
||||||
|
[self doAddToPlaylist:sender origin:URLOriginExternal];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (IBAction)setAsPlaylist:(id)sender
|
- (IBAction)setAsPlaylist:(id)sender
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
- (void)awakeFromNib
|
- (void)awakeFromNib
|
||||||
{
|
{
|
||||||
[self setDoubleAction:@selector(addToPlaylist:)];
|
[self setDoubleAction:@selector(addToPlaylistExternal:)];
|
||||||
[self setTarget:[self delegate]];
|
[self setTarget:[self delegate]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
if (modifiers == 0 && (c == NSEnterCharacter || c == NSCarriageReturnCharacter))
|
if (modifiers == 0 && (c == NSEnterCharacter || c == NSCarriageReturnCharacter))
|
||||||
{
|
{
|
||||||
[(FileTreeController *)[self delegate] addToPlaylist:self];
|
[(FileTreeController *)[self delegate] addToPlaylistExternal:self];
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,10 +16,20 @@
|
||||||
return [super initWithNibName:@"FileTree" bundle:[NSBundle mainBundle]];
|
return [super initWithNibName:@"FileTree" bundle:[NSBundle mainBundle]];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)addToPlaylist:(NSArray *)urls
|
- (void)addToPlaylistInternal:(NSArray *)urls
|
||||||
{
|
{
|
||||||
[playlistLoader willInsertURLs:urls origin:URLOriginInternal];
|
[self doAddToPlaylist:urls origin:URLOriginInternal];
|
||||||
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:YES] origin:URLOriginInternal];
|
}
|
||||||
|
|
||||||
|
- (void)addToPlaylistExternal:(NSArray *)urls
|
||||||
|
{
|
||||||
|
[self doAddToPlaylist:urls origin:URLOriginExternal];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)doAddToPlaylist:(NSArray *)urls origin:(URLOrigin)origin
|
||||||
|
{
|
||||||
|
[playlistLoader willInsertURLs:urls origin:origin];
|
||||||
|
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:YES] origin:origin];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)clear:(id)sender
|
- (void)clear:(id)sender
|
||||||
|
|
Loading…
Reference in New Issue