blob: d12de421652902ec865ba7e971ef739f6368cac1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// NSArray_Extensions.h
// Quicksilver
//
// Created by Alcor on Fri Apr 04 2003.
// Copyright (c) 2003 Blacktree, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSTableView (Fancification)
//-(void)set;
//- (void)centerRowInView:(int)rowIndex;
- (void)highlightSelectionInClipRect:(NSRect)rect withGradientColor:(NSColor *)color;
@end
|