diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-25 11:01:42 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-25 11:01:42 +0000 |
commit | 15578792fecccae6121b1e8b47108776e3d80747 (patch) | |
tree | 2920fb94612763f695cf5f1b187e290e62077ec5 /Source/SPExportFilenameUtilities.h | |
parent | f578b247bed73fe2b8a7f0fc2efbe0b191890df9 (diff) | |
download | sequelpro-15578792fecccae6121b1e8b47108776e3d80747.tar.gz sequelpro-15578792fecccae6121b1e8b47108776e3d80747.tar.bz2 sequelpro-15578792fecccae6121b1e8b47108776e3d80747.zip |
Tidy up SPExportController by splitting out all filename related methods to a new category SPExportFilenameUtilities.
Diffstat (limited to 'Source/SPExportFilenameUtilities.h')
-rw-r--r-- | Source/SPExportFilenameUtilities.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Source/SPExportFilenameUtilities.h b/Source/SPExportFilenameUtilities.h new file mode 100644 index 00000000..7bbcea25 --- /dev/null +++ b/Source/SPExportFilenameUtilities.h @@ -0,0 +1,43 @@ +// +// $Id$ +// +// SPExportFilenameUtilities.h +// sequel-pro +// +// Created by Stuart Connolly (stuconnolly.com) on July 25, 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 SPExportFilenameUtilities SPExportFilenameUtilities.h + * + * @author Stuart Connolly http://stuconnolly.com/ + * + * Export filename utilities category. + */ +@interface SPExportController (SPExportFilenameUtilities) + +- (void)updateDisplayedExportFilename; +- (void)updateAvailableExportFilenameTokens; +- (NSString *)generateDefaultExportFilename; +- (NSString *)currentDefaultExportFileExtension; +- (NSString *)expandCustomFilenameFormatFromString:(NSString *)format usingTableName:(NSString *)table; + +@end |