cog/Playlist/PlaylistView.m

163 lines
3.4 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"
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-04-29 00:03:28 +00:00
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];
2006-04-29 00:03:28 +00:00
[self setVerticalMotionCanBeginDrag:YES];
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;
}
- (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
{
2006-04-29 00:03:28 +00:00
NSLog(@"MOUSE DOWN");
2005-06-02 18:16:43 +00:00
if ([e type] == NSLeftMouseDown && [e clickCount] == 2)
{
2006-01-20 15:22:03 +00:00
[playbackController play:self];
2005-06-02 18:16:43 +00:00
}
else
{
2006-04-29 00:03:28 +00:00
NSLog(@"Super");
2005-06-02 18:16:43 +00:00
[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)
{
[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