aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableContent.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-03-03 23:39:15 +0000
committerrowanbeentje <rowan@beent.je>2009-03-03 23:39:15 +0000
commitf716a08986866455792ccbb3a7d16c4e72028ade (patch)
treeebaca750fce2911d60f70c8ffdf409a122cff527 /Source/TableContent.h
parentedd1d6f093a5d6d3301a8f8cade43b051bd69083 (diff)
downloadsequelpro-f716a08986866455792ccbb3a7d16c4e72028ade.tar.gz
sequelpro-f716a08986866455792ccbb3a7d16c4e72028ade.tar.bz2
sequelpro-f716a08986866455792ccbb3a7d16c4e72028ade.zip
- BLOB and binary fields are now fully visible and editable again (fixes Issue #155)
- Added basic support for viewing, filtering, and editing BIT columns (resolves Issue #127 in basic form) - Rewrites selection/save handling. Rows are now only written to database if their content has changed, resolving a long-standing complaint; row selection and editing has also been improved, improving edit/save interaction (fixes Issue #157) and allowing re-editing of the row on failure (fixes Issue #115). Hopefully also addresses #Issue 131, and improves Issue #172. - Hides the console window when the associated document window closes
Diffstat (limited to 'Source/TableContent.h')
-rw-r--r--Source/TableContent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/TableContent.h b/Source/TableContent.h
index e0802e3b..5847b868 100644
--- a/Source/TableContent.h
+++ b/Source/TableContent.h
@@ -65,7 +65,7 @@
NSString *compareType, *sortField;
BOOL isEditingRow, isEditingNewRow, isDesc, setLimit;
NSUserDefaults *prefs;
- int numRows;
+ int numRows, currentlyEditingRow;
bool areShowingAllRows;
}
@@ -105,6 +105,7 @@
- (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(NSString *)contextInfo;
- (int)getNumberOfRows;
- (int)fetchNumberOfRows;
+- (BOOL)saveRowOnDeselect;
//tableView datasource methods
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
@@ -118,7 +119,6 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn
//tableView delegate methods
- (void)tableView:(NSTableView*)tableView didClickTableColumn:(NSTableColumn *)tableColumn;
-- (BOOL)selectionShouldChangeInTableView:(NSTableView *)aTableView;
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification;
- (void)tableViewSelectionIsChanging:(NSNotification *)aNotification;
- (void)tableViewColumnDidResize:(NSNotification *)aNotification;