aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPImageView.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-05-27 17:39:54 +0000
committerstuconnolly <stuart02@gmail.com>2010-05-27 17:39:54 +0000
commit20e2a56789fee97b67c41e3d16b5752dbe9f495b (patch)
tree60ed35c0f39403c0ef96c13f7a57964138c82e27 /Source/SPImageView.h
parentc06ad0189beb544710b6d47b2978a5614d036cdc (diff)
downloadsequelpro-20e2a56789fee97b67c41e3d16b5752dbe9f495b.tar.gz
sequelpro-20e2a56789fee97b67c41e3d16b5752dbe9f495b.tar.bz2
sequelpro-20e2a56789fee97b67c41e3d16b5752dbe9f495b.zip
Rename CMImageView to SPImageView.
Diffstat (limited to 'Source/SPImageView.h')
-rw-r--r--Source/SPImageView.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/SPImageView.h b/Source/SPImageView.h
new file mode 100644
index 00000000..3576cf37
--- /dev/null
+++ b/Source/SPImageView.h
@@ -0,0 +1,42 @@
+//
+// $Id$
+//
+// SPImageView.h
+// sequel-pro
+//
+// Created by lorenz textor (lorenz@textor.ch) on Sat Sep 06 2003.
+// Copyright (c) 2002-2003 Lorenz Textor. All rights reserved.
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// More info at <http://code.google.com/p/sequel-pro/>
+
+#import <Cocoa/Cocoa.h>
+
+@interface NSObject (SPImageViewDelegate)
+
+- (void)processUpdatedImageData:(NSData *)data;
+- (void)processPasteImageData;
+
+@end
+
+@interface SPImageView : NSImageView
+{
+ IBOutlet id delegate;
+}
+
+- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
+
+@end