aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPFieldEditor.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-07-16 21:21:48 +0000
committerBibiko <bibiko@eva.mpg.de>2009-07-16 21:21:48 +0000
commite924f11978d280345572960636e5ffc42b53b5b2 (patch)
treefc8f25b1caab34cab21277e6c3228d88c77ecc19 /Source/SPFieldEditor.h
parent6f637e7b2b68de486c8fb5cd2e6ac5c0dd59c8c6 (diff)
downloadsequelpro-e924f11978d280345572960636e5ffc42b53b5b2.tar.gz
sequelpro-e924f11978d280345572960636e5ffc42b53b5b2.tar.bz2
sequelpro-e924f11978d280345572960636e5ffc42b53b5b2.zip
• some further progress on outsourcing the Field Editor sheet for Content and Custom Query Tab
Diffstat (limited to 'Source/SPFieldEditor.h')
-rw-r--r--Source/SPFieldEditor.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/Source/SPFieldEditor.h b/Source/SPFieldEditor.h
deleted file mode 100644
index 1271b483..00000000
--- a/Source/SPFieldEditor.h
+++ /dev/null
@@ -1,58 +0,0 @@
-//
-// SPFieldEditor.h
-// sequel-pro
-//
-// Created by Bibiko on 25.06.09.
-// Copyright 2009 __MyCompanyName__. All rights reserved.
-//
-
-#import <Cocoa/Cocoa.h>
-
-
-@interface SPFieldEditor : NSWindow {
-
- IBOutlet id editSheetProgressBar;
- IBOutlet id editSheetSegmentControl;
- IBOutlet id editSheetQuickLookButton;
- IBOutlet id editImage;
- IBOutlet id editTextView;
- IBOutlet id hexTextView;
- IBOutlet id editTextScrollView;
- IBOutlet id hexTextScrollView;
-
- id sheetEditData;
-
- NSString *stringValue;
-
- BOOL editSheetWillBeInitialized;
- BOOL isBlob;
- int quickLookCloseMarker;
- NSStringEncoding encoding;
-
-
-}
-
-- (IBAction)closeEditSheet:(id)sender;
-- (IBAction)openEditSheet:(id)sender;
-- (IBAction)saveEditSheet:(id)sender;
-- (IBAction)dropImage:(id)sender;
-- (IBAction)segmentControllerChanged:(id)sender;
-- (IBAction)quickLookFormatButton:(id)sender;
-- (IBAction)dropImage:(id)sender;
-
-- (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