aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPExportControllerDelegate.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-10-24 11:30:12 +0000
committerstuconnolly <stuart02@gmail.com>2010-10-24 11:30:12 +0000
commit729acc2f2d4954130798ed382dca478eade14302 (patch)
treeb3ee47681377aa2e274470118f54e9767221c493 /Source/SPExportControllerDelegate.h
parentc965b60b6ec45f56aa406296b5c35f48360f175a (diff)
downloadsequelpro-729acc2f2d4954130798ed382dca478eade14302.tar.gz
sequelpro-729acc2f2d4954130798ed382dca478eade14302.tar.bz2
sequelpro-729acc2f2d4954130798ed382dca478eade14302.zip
- Split out all of SPExportController's delegate methods to their own category.
- Prepare for the implementation of PDF and HTML export by hiding the export options box for export types that don't need it. - Fix some spacing issues on the export dialog. - Create a new SPCategoryAdditions header that is included in the apps precompiled header, making all additions available to all classes. - Update strings files.
Diffstat (limited to 'Source/SPExportControllerDelegate.h')
-rw-r--r--Source/SPExportControllerDelegate.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/Source/SPExportControllerDelegate.h b/Source/SPExportControllerDelegate.h
new file mode 100644
index 00000000..f9406be4
--- /dev/null
+++ b/Source/SPExportControllerDelegate.h
@@ -0,0 +1,37 @@
+//
+// $Id$
+//
+// SPExportControllerDelegate.h
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on October 23, 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 "SPExportController.h"
+
+/**
+ * @category SPExportControllerDelegate SPExportControllerDelegate.h
+ *
+ * @author Stuart Connolly http://stuconnolly.com/
+ *
+ * Export controller delegate category.
+ */
+@interface SPExportController (SPExportControllerDelegate)
+
+@end