1  /*
2         ImageView.h
3 
4 	This file is part of Preview
5 
6 	Copyright (C) 2003;2004 Fabien VALLON
7 	2003,2004 Alcove ( http://www.alcove.com )
8 	Additional copyrights here
9 
10 	Authors : Fabien VALLON <fabien@sonappart.net>
11 	Date:	10 Jan 2005
12 
13 	This program is free software; you can redistribute it and/or
14 	modify it under the terms of the GNU General Public License as
15 	published by the Free Software Foundation; either version 2 of
16 	the License, or (at your option) any later version.
17 
18 	This program is distributed in the hope that it will be useful,
19 	but WITHOUT ANY WARRANTY; without even the implied warranty of
20 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 
22 	See the GNU General Public License for more details.
23 
24 	You should have received a copy of the GNU General Public
25 	License along with this program; if not, write to:
26 
27 		Free Software Foundation, Inc.
28 		59 Temple Place - Suite 330
29 		Boston, MA  02111-1307, USA
30 */
31 
32 #ifndef _IMAGESAPPS_PREVIEW_IMAGEVIEW_H
33 #define _IMAGESAPPS_PREVIEW_IMAGEVIEW_H
34 
35 #include <AppKit/NSImageView.h>
36 
37 @interface ImageView: NSImageView
38 {
39   NSPoint  selectionStart;
40 }
41 
42 @end
43 
44 #endif
45