]> Dogcows Code - chaz/thecheat/blobdiff - VariableTable.h
The Cheat 1.2
[chaz/thecheat] / VariableTable.h
diff --git a/VariableTable.h b/VariableTable.h
new file mode 100644 (file)
index 0000000..de81f4c
--- /dev/null
@@ -0,0 +1,38 @@
+//
+//  VariableTable.h
+//  The Cheat
+//
+//  Created by Chaz McGarvey on 12/28/04.
+//  Copyright 2004 Chaz McGarvey. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+#include "ChazLog.h"
+
+#import "BetterTableView.h"
+
+#import "TrackerScroller.h"
+
+/*
+ * This class lets you get which rows are currently visible and has a delegate
+ * method which is called when the visible rows changes.
+ */
+
+
+@interface VariableTable : BetterTableView
+{
+       BOOL _dontUpdate;
+       BOOL _updatePending;
+       NSRange _visibleRows;
+}
+
+- (NSRange)visibleRows;
+
+@end
+
+
+@interface NSObject ( VariableTableViewDelegate )
+
+- (void)tableView:(NSTableView *)aTableView didChangeVisibleRows:(NSRange)rows;
+
+@end
\ No newline at end of file
This page took 0.018215 seconds and 4 git commands to generate.