cog/Playlist/PlaylistView.m

198 lines
4.8 KiB
Matlab
Raw Normal View History

2005-06-02 18:16:43 +00:00
//
// PlaylistView.m
// 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 "PlaylistView.h"
2006-01-20 15:22:03 +00:00
#import "PlaybackController.h"
2005-06-02 18:16:43 +00:00
#import "PlaylistController.h"
2006-05-29 22:23:56 +00:00
#import "PlaylistHeaderView.h"
#import "IndexFormatter.h"
#import "SecondsFormatter.h"
2005-06-02 18:16:43 +00:00
@implementation PlaylistView
2006-04-28 23:19:14 +00:00
- (void)awakeFromNib
{
[super awakeFromNib];
2006-04-28 23:19:14 +00:00
NSControlSize s = NSSmallControlSize;
NSEnumerator *oe = [[self allTableColumns] objectEnumerator];
2006-04-28 23:19:14 +00:00
NSFont *f = [NSFont systemFontOfSize:[NSFont systemFontSizeForControlSize:s]];
[self setRowHeight:[f defaultLineHeightForFont]];
//Resize the fonts
id c;
2006-04-28 23:19:14 +00:00
while (c = [oe nextObject])
{
[[c dataCell] setControlSize:s];
[[c dataCell] setFont:f];
}
2006-05-29 22:23:56 +00:00
NSTableHeaderView *currentTableHeaderView = [self headerView];
PlaylistHeaderView *customTableHeaderView = [[PlaylistHeaderView alloc] init];
[customTableHeaderView setFrame:[currentTableHeaderView frame]];
[customTableHeaderView setBounds:[currentTableHeaderView bounds]];
2006-06-19 00:39:41 +00:00
// [self setColumnAutoresizingStyle:NSTableViewNoColumnAutoresizing];
2006-05-29 22:23:56 +00:00
[self setHeaderView:customTableHeaderView];
2007-03-14 03:16:37 +00:00
//Set up formatters
NSFormatter *secondsFormatter = [[SecondsFormatter alloc] init];
[[[self tableColumnWithIdentifier:@"length"] dataCell] setFormatter:secondsFormatter];
[secondsFormatter release];
NSFormatter *indexFormatter = [[IndexFormatter alloc] init];
[[[self tableColumnWithIdentifier:@"index"] dataCell] setFormatter:indexFormatter];
[indexFormatter release];
2007-03-14 03:16:37 +00:00
//end setting up formatters
2006-04-29 00:03:28 +00:00
[self setVerticalMotionCanBeginDrag:YES];
2007-03-14 03:16:37 +00:00
//Set up header context menu
headerContextMenu = [[NSMenu alloc] initWithTitle:@"Playlist Header Context Menu"];
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"headerCell.title" ascending:YES];
NSArray *sortDescriptors = [NSArray arrayWithObject:sortDescriptor];
NSEnumerator *e = [[[[self allTableColumns] allObjects] sortedArrayUsingDescriptors: sortDescriptors] objectEnumerator];
int menuIndex = 0;
NSTableColumn *col;
while (col = [e nextObject]) {
NSMenuItem *contextMenuItem = [headerContextMenu insertItemWithTitle:[[col headerCell] title] action:@selector(toggleColumn:) keyEquivalent:@"" atIndex:menuIndex];
[contextMenuItem setTarget:self];
[contextMenuItem setRepresentedObject:col];
[contextMenuItem setState:([[self visibleTableColumns] containsObject:col] ? NSOnState : NSOffState)];
menuIndex++;
}
[sortDescriptor release];
[[self headerView] setMenu:headerContextMenu];
2006-06-19 00:39:41 +00:00
}
- (IBAction)toggleColumn:(id)sender
2006-06-19 00:39:41 +00:00
{
id tc = [sender representedObject];
if ([sender state] == NSOffState)
{
[sender setState:NSOnState];
2006-06-19 00:39:41 +00:00
[self showTableColumn:tc];
}
else
{
[sender setState:NSOffState];
[self hideTableColumn:tc];
}
2006-06-19 00:39:41 +00:00
}
2005-06-02 18:16:43 +00:00
- (BOOL)acceptsFirstResponder
{
return YES;
}
2005-06-02 18:16:43 +00:00
- (BOOL)resignFirstResponder
{
return YES;
}
2005-06-30 17:46:07 +00:00
- (BOOL)acceptsFirstMouse:(NSEvent *)mouseDownEvent
{
return NO;
}
2005-06-02 18:16:43 +00:00
- (void)mouseDown:(NSEvent *)e
{
if ([e type] == NSLeftMouseDown && [e clickCount] == 2 && [self selectedRow] != -1)
2005-06-02 18:16:43 +00:00
{
2006-01-20 15:22:03 +00:00
[playbackController play:self];
2005-06-02 18:16:43 +00:00
}
else
{
[super mouseDown:e];
}
}
// enables right-click selection for "Show in Finder" contextual menu
-(NSMenu*)menuForEvent:(NSEvent*)event
{
//Find which row is under the cursor
[[self window] makeFirstResponder:self];
NSPoint menuPoint = [self convertPoint:[event locationInWindow] fromView:nil];
int row = [self rowAtPoint:menuPoint];
/* Update the table selection before showing menu
Preserves the selection if the row under the mouse is selected (to allow for
multiple items to be selected), otherwise selects the row under the mouse */
BOOL currentRowIsSelected = [[self selectedRowIndexes] containsIndex:row];
if (!currentRowIsSelected)
[self selectRow:row byExtendingSelection:NO];
2006-05-29 22:23:56 +00:00
if ([self numberOfSelectedRows] <=0)
{
//No rows are selected, so the table should be displayed with all items disabled
NSMenu* tableViewMenu = [[self menu] copy];
int i;
for (i=0;i<[tableViewMenu numberOfItems];i++)
[[tableViewMenu itemAtIndex:i] setEnabled:NO];
return [tableViewMenu autorelease];
}
else
return [self menu];
}
2005-06-02 18:16:43 +00:00
- (void)keyDown:(NSEvent *)e
{
NSString *s;
unichar c;
s = [e charactersIgnoringModifiers];
if ([s length] != 1)
return;
c = [s characterAtIndex:0];
if (c == NSDeleteCharacter || c == NSBackspaceCharacter || c == NSDeleteFunctionKey)
2005-06-02 18:16:43 +00:00
{
[playlistController remove:self];
}
else if (c == ' ')
{
2006-01-20 15:22:03 +00:00
[playbackController playPauseResume:self];
2005-06-02 18:16:43 +00:00
}
else if (c == NSEnterCharacter || c == NSCarriageReturnCharacter)
{
2006-01-20 15:22:03 +00:00
[playbackController play:self];
2005-06-02 18:16:43 +00:00
}
else
{
[super keyDown:e];
}
}
2006-05-29 23:03:58 +00:00
- (IBAction)sortByPath:(id)sender
{
[self setSortDescriptors:nil];
[playlistController sortByPath];
}
- (IBAction)shufflePlaylist:(id)sender
{
[self setSortDescriptors:nil];
[playlistController randomizeList];
}
2005-06-02 18:16:43 +00:00
@end