1 /*
2  * ImageShowing.h created by probert on 2001-11-17 14:50:02 +0000
3  *
4  * Project ImageViewer
5  *
6  * Created with ProjectCenter - http://www.projectcenter.ch
7  *
8  * $Id: ImageShowing.h,v 1.3 2003/05/16 19:29:51 philippe Exp $
9  */
10 
11 #ifndef _IMAGESHOWING_H_
12 #define _IMAGESHOWING_H_
13 
14 @protocol ImageShowing <NSObject>
15 
16 - (NSString *)path;
17 - (NSString *)imagePath;
18 - (NSString *)imageName;
19 - (NSString *)imageType;
20 - (NSString *)imageSize;
21 - (NSString *)imageFileModificationDate;
22 - (NSString *)imageFilePermissions;
23 - (NSString *)imageFileOwner;
24 - (NSString *)imageResolution;
25 - (NSString *)bitsPerSample;
26 - (NSString *)colorSpaceName;
27 - (NSString *)hasAlpha;
28 - (NSString *)imageReps;
29 
30 @end
31 
32 #endif // _IMAGESHOWING_H_
33