diff options
author | rowanbeentje <rowan@beent.je> | 2009-11-08 22:58:56 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-11-08 22:58:56 +0000 |
commit | 8f3065bb99ff46ddfcffdd05eb55e09871cad0c9 (patch) | |
tree | 0e580a5c151e6933c95c0b8417ae44f8c8f8acb4 /Source/SPHistoryController.h | |
parent | 55bf19f025ab67562b151a40e2440c5c76b00ee5 (diff) | |
download | sequelpro-8f3065bb99ff46ddfcffdd05eb55e09871cad0c9.tar.gz sequelpro-8f3065bb99ff46ddfcffdd05eb55e09871cad0c9.tar.bz2 sequelpro-8f3065bb99ff46ddfcffdd05eb55e09871cad0c9.zip |
- Support nested task levels to allow tasks to overlap
- Thread history loading, thus using the nested task elvels and fixing history interaction in recent builds
- Thread initial database loads
- Improve progress indicator slightly
Diffstat (limited to 'Source/SPHistoryController.h')
-rw-r--r-- | Source/SPHistoryController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/SPHistoryController.h b/Source/SPHistoryController.h index 80aa08f2..56303807 100644 --- a/Source/SPHistoryController.h +++ b/Source/SPHistoryController.h @@ -24,7 +24,7 @@ #import <Cocoa/Cocoa.h> -@class TableDocument, TableContent; +@class TableDocument, TableContent, TablesList; enum sphistory_view_types { @@ -41,6 +41,7 @@ enum sphistory_view_types IBOutlet NSSegmentedControl *historyControl; TableContent *tableContentInstance; + TablesList *tablesListInstance; NSMutableArray *history; NSUInteger historyPosition; BOOL modifyingHistoryState; @@ -62,6 +63,7 @@ enum sphistory_view_types // Loading history entries - (void) loadEntryAtPosition:(unsigned int)position; +- (void) loadEntryTaskWithPosition:(NSNumber *)positionNumber; - (void) abortEntryLoad; - (void) loadEntryFromMenuItem:(id)theMenuItem; |