From f2e7ed60ebafc4ff0e2f1155116153f0d9e79d2e Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Mon, 14 Jun 2010 14:26:25 +0000 Subject: Split the management of a table's indexes (adding and removing) to its own controller and XIB in preparation for the UI redesign. --- Source/SPIndexesController.h | 65 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 Source/SPIndexesController.h (limited to 'Source/SPIndexesController.h') 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 + +@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 -- cgit v1.2.3