]> Dogcows Code - chaz/thecheat/blob - VariableTable.h
update contact information and project URL
[chaz/thecheat] / VariableTable.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12
13 #import <Cocoa/Cocoa.h>
14 #include "ChazLog.h"
15
16 #import "BetterTableView.h"
17
18 #import "TrackerScroller.h"
19
20 /*
21 * This class lets you get which rows are currently visible and has a delegate
22 * method which is called when the visible rows changes.
23 */
24
25
26 @interface VariableTable : BetterTableView
27 {
28 BOOL _dontUpdate;
29 BOOL _updatePending;
30 NSRange _visibleRows;
31 }
32
33 - (NSRange)visibleRows;
34
35 @end
36
37
38 @interface NSObject ( VariableTableViewDelegate )
39
40 - (void)tableView:(NSTableView *)aTableView didChangeVisibleRows:(NSRange)rows;
41
42 @end
This page took 0.029322 seconds and 4 git commands to generate.