diff options
author | stuconnolly <stuart02@gmail.com> | 2009-09-16 14:04:33 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-09-16 14:04:33 +0000 |
commit | 61541a2b48b7f475394e7301794bca514f43ddf1 (patch) | |
tree | a6eb748eb23c15bac8df359c610ca087273f0102 /Source/SPExportController.h | |
parent | a4cbc850448f901a5320b9b9cfac2f8d28bafa2f (diff) | |
download | sequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.tar.gz sequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.tar.bz2 sequelpro-61541a2b48b7f475394e7301794bca514f43ddf1.zip |
Some more data exporter redesign changes I've been meaning to commit.
Diffstat (limited to 'Source/SPExportController.h')
-rw-r--r-- | Source/SPExportController.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Source/SPExportController.h b/Source/SPExportController.h index 61447063..8653c345 100644 --- a/Source/SPExportController.h +++ b/Source/SPExportController.h @@ -53,6 +53,9 @@ typedef NSUInteger SPExportSource; // Tables list IBOutlet id tablesListInstance; + // Table data + IBOutlet id tableDataInstance; + // Export window IBOutlet id exportWindow; IBOutlet id exportToolbar; @@ -101,20 +104,20 @@ typedef NSUInteger SPExportSource; IBOutlet id exampleNameLabel; // Local variables - MCPConnection *mySQLConnection; + BOOL exportCancelled; NSMutableArray *tables; + MCPConnection *connection; } -// Export Methods +@property (readwrite, assign) BOOL exportCancelled; +@property (readwrite, assign) MCPConnection *connection; + +// IB action methods - (void)export; - (IBAction)closeSheet:(id)sender; -- (IBAction)cancelExport:(id)sender; -- (IBAction)changeExportOutputPath:(id)sender; - -// Utility Methods -- (void)setConnection:(MCPConnection *)theConnection; -- (void)loadTables; - (IBAction)switchTab:(id)sender; - (IBAction)switchInput:(id)sender; +- (IBAction)cancelExport:(id)sender; +- (IBAction)changeExportOutputPath:(id)sender; @end |