aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableStructure.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-10-28 15:35:40 +0000
committerstuconnolly <stuart02@gmail.com>2010-10-28 15:35:40 +0000
commitf48b5ba6410a5d449fad026e870e2c3e5e0fcf53 (patch)
treea358fb72201d9c70f2a7d05909cab9fc7eabe8c0 /Source/SPTableStructure.h
parentc48e2762b6906f4751f9918af379d01b42647e46 (diff)
downloadsequelpro-f48b5ba6410a5d449fad026e870e2c3e5e0fcf53.tar.gz
sequelpro-f48b5ba6410a5d449fad026e870e2c3e5e0fcf53.tar.bz2
sequelpro-f48b5ba6410a5d449fad026e870e2c3e5e0fcf53.zip
Add SPDefaultPasteboardDragType constant.
Diffstat (limited to 'Source/SPTableStructure.h')
-rw-r--r--Source/SPTableStructure.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/SPTableStructure.h b/Source/SPTableStructure.h
index 657cf777..68225fab 100644
--- a/Source/SPTableStructure.h
+++ b/Source/SPTableStructure.h
@@ -33,6 +33,7 @@
IBOutlet id tableInfoInstance;
IBOutlet id extendedTableInfoInstance;
IBOutlet id indexesController;
+ IBOutlet id databaseDataInstance;
IBOutlet id keySheet;
IBOutlet id resetAutoIncrementSheet;
@@ -54,11 +55,8 @@
IBOutlet NSButton *indexesShowButton;
IBOutlet id viewColumnsMenu;
-
IBOutlet id encodingPopupCell;
-
- id databaseDataInstance;
-
+
MCPConnection *mySQLConnection;
MCPResult *tableSourceResult;
MCPResult *indexResult;
@@ -67,17 +65,18 @@
NSMutableArray *tableFields;
NSMutableDictionary *oldRow, *enumFields;
NSDictionary *defaultValues;
- BOOL isEditingRow, isEditingNewRow, isSavingRow, alertSheetOpened;
NSInteger currentlyEditingRow;
NSUserDefaults *prefs;
NSArray *collations;
NSArray *typeSuggestions;
+
+ BOOL isEditingRow, isEditingNewRow, isSavingRow, alertSheetOpened;
}
-// Table methods
+// Table loading
- (void)loadTable:(NSString *)aTable;
- (IBAction)reloadTable:(id)sender;
-- (void) setTableDetails:(NSDictionary *)tableDetails;
+- (void)setTableDetails:(NSDictionary *)tableDetails;
// Edit methods
- (IBAction)addField:(id)sender;