diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-06-25 21:14:07 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-06-25 21:14:07 +0000 |
commit | 4f7a6885813b7e8bd2e09c00567fd88a20c66af7 (patch) | |
tree | 43e84982fa737f2e9eea9f1f1f0a3b2444f8b5f2 /Source/SPFieldEditor.h | |
parent | 838e5a6c3db933cf0d8453db6620e0c6f2ff365d (diff) | |
download | sequelpro-4f7a6885813b7e8bd2e09c00567fd88a20c66af7.tar.gz sequelpro-4f7a6885813b7e8bd2e09c00567fd88a20c66af7.tar.bz2 sequelpro-4f7a6885813b7e8bd2e09c00567fd88a20c66af7.zip |
• some work on SPFieldEditor
Diffstat (limited to 'Source/SPFieldEditor.h')
-rw-r--r-- | Source/SPFieldEditor.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/Source/SPFieldEditor.h b/Source/SPFieldEditor.h index 8b057f80..ff7cd5c6 100644 --- a/Source/SPFieldEditor.h +++ b/Source/SPFieldEditor.h @@ -22,9 +22,14 @@ IBOutlet id hexTextScrollView; id editData; + + NSString *stringValue; + BOOL editSheetWillBeInitialized; + BOOL isBlob; int quickLookCloseMarker; NSStringEncoding encoding; + } @@ -34,15 +39,21 @@ - (IBAction)dropImage:(id)sender; - (IBAction)segmentControllerChanged:(id)sender; - (IBAction)quickLookFormatButton:(id)sender; +- (IBAction)dropImage:(id)sender; -- (void)setEditData:(id)data; - -- (void)setMySQLConnectionEncoding:(NSStringEncoding)anEncoding; +- (void)initWithObject:(id)data usingEncoding:(NSStringEncoding)anEncoding isObjectBlob:(BOOL)isFieldBlob; - (void)processPasteImageData; - (void)processUpdatedImageData:(NSData *)data; +- (id)editData; + - (void)invokeQuickLookOfType:(NSString *)type treatAsText:(BOOL)isText; - (void)removeQuickLooksTempFile:(NSString*)aPath; +- (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)aSelector; +- (void)textViewDidChangeSelection:(NSNotification *)notification; + +- (void)clean; + @end |