diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-02-22 23:36:15 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-02-22 23:36:15 +0000 |
commit | c11169058366ca679789bc82cf1b3ca8ed496967 (patch) | |
tree | e2f34bd6888ac59554b9c6df5532265d8b230c76 /Source/TableSource.h | |
parent | 0d39a10771ae048d49d413ac1baf1d8f485190e0 (diff) | |
download | sequelpro-c11169058366ca679789bc82cf1b3ca8ed496967.tar.gz sequelpro-c11169058366ca679789bc82cf1b3ca8ed496967.tar.bz2 sequelpro-c11169058366ca679789bc82cf1b3ca8ed496967.zip |
• implemented chance to reset AUTO_INCREMENT of the PRIMARY KEY field in Table Info Pane via Advanced popup button and sheet (not yet optimal GUI solution)
• SPAlertSheets
- ensure that this sheet becomes the keyWindow
Diffstat (limited to 'Source/TableSource.h')
-rw-r--r-- | Source/TableSource.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/TableSource.h b/Source/TableSource.h index 6904b875..3650ec14 100644 --- a/Source/TableSource.h +++ b/Source/TableSource.h @@ -32,12 +32,14 @@ IBOutlet id tableDataInstance; IBOutlet id tableDocumentInstance; IBOutlet id tableInfoInstance; + IBOutlet id extendedTableInfoInstance; IBOutlet id tableWindow; IBOutlet id indexSheet; IBOutlet id keySheet; IBOutlet id resetAutoIncrementSheet; IBOutlet id resetAutoIncrementValue; + IBOutlet id resetAutoIncrementLine; IBOutlet id tableSourceView; IBOutlet id indexView; IBOutlet id addFieldButton; @@ -92,6 +94,7 @@ - (NSArray *)fetchResultAsArray:(MCPResult *)theResult; - (BOOL)saveRowOnDeselect; - (BOOL)addRowToDB; +- (void)setAutoIncrementTo:(NSString*)valueAsString; // Getter methods - (NSString *)defaultValueForField:(NSString *)field; |