aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableDocument.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-11-08 22:58:56 +0000
committerrowanbeentje <rowan@beent.je>2009-11-08 22:58:56 +0000
commit8f3065bb99ff46ddfcffdd05eb55e09871cad0c9 (patch)
tree0e580a5c151e6933c95c0b8417ae44f8c8f8acb4 /Source/TableDocument.h
parent55bf19f025ab67562b151a40e2440c5c76b00ee5 (diff)
downloadsequelpro-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/TableDocument.h')
-rw-r--r--Source/TableDocument.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/TableDocument.h b/Source/TableDocument.h
index f0e43fef..34df12f8 100644
--- a/Source/TableDocument.h
+++ b/Source/TableDocument.h
@@ -134,8 +134,9 @@ enum sp_current_query_mode
BOOL _encodingViaLatin1;
BOOL _shouldOpenConnectionAutomatically;
BOOL _isConnected;
- BOOL _isWorking;
+ int _isWorkingLevel;
BOOL _mainNibLoaded;
+ BOOL databaseListIsSelectable;
int _queryMode;
BOOL taskDisplayIsIndeterminate;
@@ -175,6 +176,7 @@ enum sp_current_query_mode
// Database methods
- (IBAction)setDatabases:(id)sender;
- (IBAction)chooseDatabase:(id)sender;
+- (void)chooseDatabaseTask;
- (IBAction)addDatabase:(id)sender;
- (IBAction)removeDatabase:(id)sender;
- (IBAction)showMySQLHelp:(id)sender;
@@ -190,6 +192,7 @@ enum sp_current_query_mode
- (void) setTaskProgressToIndeterminate;
- (void) endTask;
- (BOOL) isWorking;
+- (void) setDatabaseListIsSelectable:(BOOL)isSelectable;
// Encoding methods
- (void)setConnectionEncoding:(NSString *)mysqlEncoding reloadingViews:(BOOL)reloadViews;