aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPIndexesController.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-06-14 14:26:25 +0000
committerstuconnolly <stuart02@gmail.com>2010-06-14 14:26:25 +0000
commitf2e7ed60ebafc4ff0e2f1155116153f0d9e79d2e (patch)
tree380ed2fe0cf951af865645a6d52e548687e9a1f1 /Source/SPIndexesController.h
parentad0073ffa67dcdd7d891c7e55614ab706cce4809 (diff)
downloadsequelpro-f2e7ed60ebafc4ff0e2f1155116153f0d9e79d2e.tar.gz
sequelpro-f2e7ed60ebafc4ff0e2f1155116153f0d9e79d2e.tar.bz2
sequelpro-f2e7ed60ebafc4ff0e2f1155116153f0d9e79d2e.zip
Split the management of a table's indexes (adding and removing) to its own controller and XIB in preparation for the UI redesign.
Diffstat (limited to 'Source/SPIndexesController.h')
-rw-r--r--Source/SPIndexesController.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/Source/SPIndexesController.h b/Source/SPIndexesController.h
new file mode 100644
index 00000000..9ceb6d9e
--- /dev/null
+++ b/Source/SPIndexesController.h
@@ -0,0 +1,65 @@
+//
+// $Id$
+//
+// SPIndexesController.h
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on June 13, 2010
+// Copyright (c) 2009 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/>
+
+@class SPDatabaseDocument, SPTablesList, SPTableData, SPTableStructure, MCPConnection;
+
+@interface SPIndexesController : NSWindowController
+{
+ // Controllers
+ IBOutlet SPDatabaseDocument *dbDocument;
+ IBOutlet SPTableStructure *tableStructure;
+ IBOutlet SPTablesList *tablesList;
+ IBOutlet SPTableData *tableData;
+
+ // Index table view
+ IBOutlet NSTableView *indexesTableView;
+ IBOutlet NSButton *addIndexButton;
+
+ // New index sheet
+ IBOutlet NSPopUpButton *indexTypePopUpButton;
+ IBOutlet NSTextField *indexNameTextField;
+ IBOutlet NSComboBox *indexedColumnsComboBox;
+
+ NSString *table;
+
+ NSMutableArray *fields, *indexes;
+
+ NSUserDefaults *prefs;
+
+ MCPConnection *connection;
+}
+
+@property (readwrite, retain) NSString *table;
+@property (readwrite, assign) MCPConnection *connection;
+
+- (IBAction)addIndex:(id)sender;
+- (IBAction)removeIndex:(id)sender;
+- (IBAction)chooseIndexType:(id)sender;
+- (IBAction)closeSheet:(id)sender;
+
+- (void)setFields:(NSArray *)tableFields;
+- (void)setIndexes:(NSArray *)tableIndexes;
+
+@end