diff options
Diffstat (limited to 'Source/SPTableContent.h')
-rw-r--r-- | Source/SPTableContent.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/SPTableContent.h b/Source/SPTableContent.h index 7b87bc32..1899d6a6 100644 --- a/Source/SPTableContent.h +++ b/Source/SPTableContent.h @@ -99,6 +99,9 @@ NSString *filterFieldToRestore, *filterComparisonToRestore, *filterValueToRestore, *firstBetweenValueToRestore, *secondBetweenValueToRestore; NSInteger paginationViewHeight; + + NSTimer *tableLoadTimer; + NSUInteger tableLoadInterfaceUpdateInterval, tableLoadTimerTicksSinceLastUpdate, tableLoadLastRowCount; } // Table loading methods and information @@ -107,6 +110,9 @@ - (void) loadTableValues; - (NSString *) tableFilterString; - (void) updateCountText; +- (void) initTableLoadTimer; +- (void) clearTableLoadTimer; +- (void) tableLoadUpdate:(NSTimer *)theTimer; // Table interface actions - (IBAction) reloadTable:(id)sender; @@ -148,6 +154,7 @@ - (NSString *)fieldListForQuery; - (void)updateNumberOfRows; - (NSInteger)fetchNumberOfRows; +- (void)autosizeColumns; - (BOOL)saveRowOnDeselect; - (void)sortTableTaskWithColumn:(NSTableColumn *)tableColumn; |