//
// $Id$
//
// SPExportController.h
// sequel-pro
//
// Created by Ben Perry (benperry.com.au) on 21/02/09.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// More info at
#import
#import
// Export type constants
enum {
SP_SQL_EXPORT = 1,
SP_CSV_EXPORT = 2,
SP_XML_EXPORT = 3,
SP_PDF_EXPORT = 4,
SP_HTML_EXPORT = 5,
SP_EXCEL_EXPORT = 6
};
typedef NSUInteger SPExportType;
// Export source constants
enum {
SP_FILTERED_EXPORT = 1,
SP_CUSTOM_QUERY_EXPORT = 2,
SP_TABLE_EXPORT = 3
};
typedef NSUInteger SPExportSource;
@interface SPExportController : NSObject
{
// Table document
IBOutlet id tableDocumentInstance;
IBOutlet id tableWindow;
// Tables list
IBOutlet id tablesListInstance;
// Table data
IBOutlet id tableDataInstance;
// Export window
IBOutlet id exportWindow;
IBOutlet id exportToolbar;
IBOutlet id exportPathField;
IBOutlet id exportTableList;
IBOutlet id exportTabBar;
IBOutlet id exportInputMatrix;
IBOutlet id exportFilePerTableCheck;
IBOutlet id exportFilePerTableNote;
// Export progress sheet
IBOutlet id exportProgressWindow;
IBOutlet id exportProgressTitle;
IBOutlet id exportProgressText;
IBOutlet id exportProgressIndicator;
// SQL
IBOutlet id exportSQLIncludeStructureCheck;
IBOutlet id exportSQLIncludeDropSyntaxCheck;
IBOutlet id exportSQLIncludeErrorsCheck;
// Excel
IBOutlet id exportExcelSheetOrFilePerTableMatrix;
// CSV
IBOutlet id exportCSVIncludeFieldNamesCheck;
IBOutlet id exportCSVFieldsTerminatedField;
IBOutlet id exportCSVFieldsWrappedField;
IBOutlet id exportCSVFieldsEscapedField;
IBOutlet id exportCSVLinesTerminatedField;
// HTML
IBOutlet id exportHTMLIncludeStructureCheck;
IBOutlet id exportHTMLIncludeHeadAndBodyTagsCheck;
// XML
IBOutlet id exportXMLIncludeStructureCheck;
// PDF
IBOutlet id exportPDFIncludeStructureCheck;
// Token name view
IBOutlet id tokenNameView;
IBOutlet id tokenNameField;
IBOutlet id tokenNameTokensField;
IBOutlet id exampleNameLabel;
// Local variables
BOOL exportCancelled;
NSMutableArray *tables;
MCPConnection *connection;
}
@property (readwrite, assign) BOOL exportCancelled;
@property (readwrite, assign) MCPConnection *connection;
// IB action methods
- (void)export;
- (IBAction)closeSheet:(id)sender;
- (IBAction)switchTab:(id)sender;
- (IBAction)switchInput:(id)sender;
- (IBAction)cancelExport:(id)sender;
- (IBAction)changeExportOutputPath:(id)sender;
@end