diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-06-13 13:25:59 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-06-13 13:25:59 +0000 |
commit | a343ff6aa7e5789cd0d35a28caace8e39959e777 (patch) | |
tree | 478aea74e73770f5798a13aa96e878ff212df76c /Source/TableContent.h | |
parent | 348de054eb77b5291c6046b36fdaaa600f9aaaed (diff) | |
download | sequelpro-a343ff6aa7e5789cd0d35a28caace8e39959e777.tar.gz sequelpro-a343ff6aa7e5789cd0d35a28caace8e39959e777.tar.bz2 sequelpro-a343ff6aa7e5789cd0d35a28caace8e39959e777.zip |
• moved code for de/increasing font and drag&drop feature (content or while holding ⌘ path) to SPTextViewAddition
- two finger zooming gesture is disabled for NSTableView cells
- i.e. all NSTextViews including NSTableView cells inherit these feature
• simplified QuickLookFormat IBActions
- added bin/text storing type to each action
• QuickLook animation set to SP's window middle point
• fixed issue that while having an image in editSheet an attribute change (font/size) in the editTextView destroyed the image data
• fix to allow again drag&drop an image to editSheet
• hide text/image/hex segment controll and QuickLook pull down button if user chose multipleLineEditingButton for non-blob fields
• disabled NSLog of print result in TableDocument
Diffstat (limited to 'Source/TableContent.h')
-rw-r--r-- | Source/TableContent.h | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Source/TableContent.h b/Source/TableContent.h index b440bf6a..7ac59148 100644 --- a/Source/TableContent.h +++ b/Source/TableContent.h @@ -168,6 +168,8 @@ int numRows, currentlyEditingRow, maxNumRowsOfCurrentTable; bool areShowingAllRows; + BOOL editSheetWillBeInitialized; + int quickLookCloseMarker; } @@ -191,19 +193,11 @@ - (IBAction)openEditSheet:(id)sender; - (IBAction)saveEditSheet:(id)sender; - (IBAction)segmentControllerChanged:(id)sender; -- (IBAction)quickLookAsMovie:(id)sender; -- (IBAction)quickLookAsSoundLinear:(id)sender; -- (IBAction)quickLookAsSoundM4A:(id)sender; -- (IBAction)quickLookAsSoundMP3:(id)sender; -- (IBAction)quickLookAsImage:(id)sender; -- (IBAction)quickLookAsPDF:(id)sender; -- (IBAction)quickLookAsWordDoc:(id)sender; -- (IBAction)quickLookAsRTF:(id)sender; -- (IBAction)quickLookAsHTML:(id)sender; -- (void)invokeQuickLookOfType:(NSString *)type; +- (IBAction)quickLookFormatButton:(id)sender; +- (void)invokeQuickLookOfType:(NSString *)type treatAsText:(BOOL)isText; - (void)processUpdatedImageData:(NSData *)data; - (IBAction)dropImage:(id)sender; -- (void)textDidChange:(NSNotification *)notification; +- (void)textViewDidChangeSelection:(NSNotification *)aNotification; - (NSString *)dataToHex:(NSData *)data; //getter methods |