diff options
author | rowanbeentje <rowan@beent.je> | 2009-02-23 01:21:43 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-02-23 01:21:43 +0000 |
commit | 40e5f768c40608f6d661d32e6dec9fefe64608e2 (patch) | |
tree | c95301a9b724d38f83bd4f34a8c0df7edf7a4a5d /Source/SPTableData.h | |
parent | bb8dfb0ad769b551ad2fd6944315c5292246ad7e (diff) | |
download | sequelpro-40e5f768c40608f6d661d32e6dec9fefe64608e2.tar.gz sequelpro-40e5f768c40608f6d661d32e6dec9fefe64608e2.tar.bz2 sequelpro-40e5f768c40608f6d661d32e6dec9fefe64608e2.zip |
A patch to improve View support, addressing Issue #130. This patch undoes the damage caused by r333, making views viewable again, and extends support by preventing errors in the info pane, by drawing views with a different icon to easily differentiate them, by making all source/index information non-editable to match GUI to behaviour, and to tweak the interface slightly to match.
Diffstat (limited to 'Source/SPTableData.h')
-rw-r--r-- | Source/SPTableData.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/SPTableData.h b/Source/SPTableData.h index fd069a6b..0a3a8883 100644 --- a/Source/SPTableData.h +++ b/Source/SPTableData.h @@ -47,8 +47,11 @@ - (void) resetAllData; - (void) resetStatusData; - (void) resetColumnData; -- (BOOL) updateInformationFromCreateTableForCurrentTable; -- (NSDictionary *) informationFromCreateTableSyntaxForTable:(NSString *)tableName; +- (BOOL) updateInformationForCurrentTable; +- (NSDictionary *) informationForTable:(NSString *)tableName; +- (BOOL) updateInformationForCurrentView; +- (NSDictionary *) informationForView:(NSString *)viewName; - (BOOL) updateStatusInformationForCurrentTable; +- (NSDictionary *) parseFieldDefinitionStringParts:(NSArray *)definitionParts; @end |