2 // AIFileTransferProgressOutlineView.m
5 // Created by Evan Schoenberg on 3/13/07.
8 #import "AIFileTransferProgressOutlineView.h"
9 #import "ESFileTransferProgressRow.h"
10 #import "ESFileTransferProgressView.h"
12 @implementation AIFileTransferProgressOutlineView
13 - (void)keyDown:(NSEvent *)theEvent
15 NSString *charactersIgnoringModifiers = [theEvent charactersIgnoringModifiers];
17 if ([charactersIgnoringModifiers length]) {
18 unichar inChar = [charactersIgnoringModifiers characterAtIndex:0];
20 if (inChar == NSLeftArrowFunctionKey) {
21 [(ESFileTransferProgressView *)[(ESFileTransferProgressRow *)[self itemAtRow:[self selectedRow]] view] setShowsDetails:NO];
22 } else if (inChar == NSRightArrowFunctionKey) {
23 [(ESFileTransferProgressView *)[(ESFileTransferProgressRow *)[self itemAtRow:[self selectedRow]] view] setShowsDetails:YES];
25 [super keyDown:theEvent];
28 [super keyDown:theEvent];