aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPHTMLExporterProtocol.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-05-24 18:07:43 +0000
committerstuconnolly <stuart02@gmail.com>2010-05-24 18:07:43 +0000
commitbbe0f861dd4e3ab99aa3d555d3fc5db5ee5ae39d (patch)
tree1cf7d41f091854e8e2288946684267ce0f8ceaf4 /Source/SPHTMLExporterProtocol.h
parentd48005bd9b34f2fb1afd31f7487b7bbf8b9b978f (diff)
downloadsequelpro-bbe0f861dd4e3ab99aa3d555d3fc5db5ee5ae39d.tar.gz
sequelpro-bbe0f861dd4e3ab99aa3d555d3fc5db5ee5ae39d.tar.bz2
sequelpro-bbe0f861dd4e3ab99aa3d555d3fc5db5ee5ae39d.zip
Merge export redesign branch back into trunk.
Includes a completely redesign approach to all export data types based on the use of NSOperation subclasses. CSV, SQL, XML and dot export types are currently functional, while the source files for PDF and HTML export types exist they are to be implemented, but are currently hidden from the interface. Also includes the following: - Completely redesigned export interface. - The ability to customize CSV NULL values. - The ability to specify whether the UTF-8 BOM should be used in SQL dumps. - The ability to specify whether BLOB fields are output as hex or plain text during SQL dumps. Defaults to hex. - Exporting currently selected tables via the tables list context menu. Outstanding issues: - Not all progress indicators for all export types are functional (or functioning correctly). - A few issues related to the introduction of only exporting the content and create and drop syntax of specific tables during SQL dumps. Needs some serious testing and benchmarking to ensure it replicates the current export functionality.
Diffstat (limited to 'Source/SPHTMLExporterProtocol.h')
-rw-r--r--Source/SPHTMLExporterProtocol.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/Source/SPHTMLExporterProtocol.h b/Source/SPHTMLExporterProtocol.h
new file mode 100644
index 00000000..f5c7328e
--- /dev/null
+++ b/Source/SPHTMLExporterProtocol.h
@@ -0,0 +1,60 @@
+//
+// $Id$
+//
+// SPHTMLExporterProtocol.h
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on April 24, 2010
+// Copyright (c) 2010 Stuart Connolly. All rights reserved.
+//
+// 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 <http://code.google.com/p/sequel-pro/>
+
+#import <Cocoa/Cocoa.h>
+
+@class SPHTMLExporter;
+
+/**
+ * @protocol SPHTMLExporterProtocol SPHTMLExporterProtocol.h
+ *
+ * @author Stuart Connolly http://stuconnolly.com/
+ *
+ * HTML exporter delegate protocol.
+ */
+@protocol SPHTMLExporterProtocol
+
+/**
+ * Called when the HTML export process is about to begin.
+ *
+ * @param SPHTMLExporter The expoter calling the method.
+ */
+- (void)htmlExportProcessWillBegin:(SPHTMLExporter *)exporter;
+
+/**
+ * Called when the HTML export process is complete.
+ *
+ * @param SPHTMLExporter The expoter calling the method.
+ */
+- (void)htmlExportProcessComplete:(SPHTMLExporter *)exporter;
+
+/**
+ * Called when the HTML export process is about to begin writing data to disk.
+ *
+ * @param SPHTMLExporter The expoter calling the method.
+ */
+- (void)htmlExportProcessWillBeginWritingData:(SPHTMLExporter *)exporter;
+
+@end