aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPIndexesController.h
diff options
context:
space:
mode:
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