]> Dogcows Code - chaz/thecheat/blob - VariableTable.h
The Cheat 1.2
[chaz/thecheat] / VariableTable.h
1 //
2 // VariableTable.h
3 // The Cheat
4 //
5 // Created by Chaz McGarvey on 12/28/04.
6 // Copyright 2004 Chaz McGarvey. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #include "ChazLog.h"
11
12 #import "BetterTableView.h"
13
14 #import "TrackerScroller.h"
15
16 /*
17 * This class lets you get which rows are currently visible and has a delegate
18 * method which is called when the visible rows changes.
19 */
20
21
22 @interface VariableTable : BetterTableView
23 {
24 BOOL _dontUpdate;
25 BOOL _updatePending;
26 NSRange _visibleRows;
27 }
28
29 - (NSRange)visibleRows;
30
31 @end
32
33
34 @interface NSObject ( VariableTableViewDelegate )
35
36 - (void)tableView:(NSTableView *)aTableView didChangeVisibleRows:(NSRange)rows;
37
38 @end
This page took 0.032254 seconds and 4 git commands to generate.