source: trunk/Cocoa/Pester/Source/NJRTableView.h@ 59

Last change on this file since 59 was 53, checked in by Nicholas Riley, 21 years ago

Updated for Pester 1.1a5 (very limited release).

Pester 1.1a4 was never released.

File size: 768 bytes
Line 
1//
2// NJRTableView.h
3// Pester
4//
5// Created by Nicholas Riley on Sun Nov 17 2002.
6// Copyright (c) 2002 Nicholas Riley. All rights reserved.
7//
8
9#import <AppKit/AppKit.h>
10
11
12@interface NJRTableView : NSTableView {
13 NSMutableDictionary *toolTipRegionList;
14 NSMutableString *typed;
15 IBOutlet id typeSelectDisplay;
16}
17
18- (id)typeSelectDisplay;
19- (void)resetTypeSelect;
20
21@end
22
23@interface NSObject (NJRTableViewDelegate)
24
25- (void)tableView:(NSTableView *)aTableView selectRowMatchingString:(NSString *)matchString;
26
27@end
28
29@interface NSObject (NJRTableViewDataSource)
30
31- (void)removeSelectedRowsFromTableView:(NSTableView *)tableView;
32- (NSString *)tableView:(NSTableView *)aTableView toolTipForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
33
34@end
Note: See TracBrowser for help on using the repository browser.