diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-08-25 09:53:15 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-08-25 09:53:15 +0000 |
commit | 86f08139a21a39b9d6077a34bf6a819833ca860c (patch) | |
tree | 279e20cd7c13da0312af519835bae4bfbe1c0201 /Source/SPCopyTable.h | |
parent | d90aac6dfab328485bad6ec450388d90684a0ee6 (diff) | |
download | sequelpro-86f08139a21a39b9d6077a34bf6a819833ca860c.tar.gz sequelpro-86f08139a21a39b9d6077a34bf6a819833ca860c.tar.bz2 sequelpro-86f08139a21a39b9d6077a34bf6a819833ca860c.zip |
• fixed several issues for in cell editing of Custom Query tables and view data in Content tables
- now each cell can be selected via keyboard navigation regardless whether it's editable or not; only if the user tries to modify it then it will be checked if it's editable or not - for speed while navigation
- fixed issue for view data editing to show blobs in editor sheet if user wants to modify it
- Note: still work on progress
Diffstat (limited to 'Source/SPCopyTable.h')
-rw-r--r-- | Source/SPCopyTable.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/SPCopyTable.h b/Source/SPCopyTable.h index d13a61f5..fed356fd 100644 --- a/Source/SPCopyTable.h +++ b/Source/SPCopyTable.h @@ -47,6 +47,7 @@ SPDataStorage* tableStorage; // the underlying storage array holding the table data NSUserDefaults *prefs; + } /*! @@ -147,6 +148,9 @@ */ - (NSUInteger)autodetectWidthForColumnDefinition:(NSDictionary *)columnDefinition maxRows:(NSUInteger)rowsToCheck; +- (BOOL)isCellEditingMode; +- (BOOL)isCellComplex; + @end extern NSInteger MENU_EDIT_COPY; |