aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TablesList.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/TablesList.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/TablesList.h')
-rw-r--r--Source/TablesList.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/TablesList.h b/Source/TablesList.h
index e32ec789..3f29011c 100644
--- a/Source/TablesList.h
+++ b/Source/TablesList.h
@@ -104,6 +104,7 @@ enum sp_table_types
int selectedTableType;
NSString *selectedTableName;
BOOL isTableListFiltered;
+ BOOL tableListIsSelectable;
BOOL tableListContainsViews;
BOOL structureLoaded, contentLoaded, statusLoaded, alertSheetOpened;
@@ -146,6 +147,9 @@ enum sp_table_types
- (void)setStatusRequiresReload:(BOOL)reload;
- (BOOL)selectTableOrViewWithName:(NSString *)theName;
+// Tabview delegate methods
+- (void)loadTabTask:(NSTabViewItem *)tabViewItem;
+
// Table list filter interaction
- (void) showFilter;
- (void) hideFilter;
@@ -155,5 +159,6 @@ enum sp_table_types
// Task interaction
- (void) startDocumentTaskForTab:(NSNotification *)aNotification;
- (void) endDocumentTaskForTab:(NSNotification *)aNotification;
+- (void) setTableListSelectability:(BOOL)isSelectable;
@end