]> err.no Git - scalable-opengroupware.org/blob - UI/MailPartViewers/UIxMailPartViewer.h
Install libs to /usr/lib
[scalable-opengroupware.org] / UI / MailPartViewers / UIxMailPartViewer.h
1 /*
2   Copyright (C) 2004-2005 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #ifndef __Mailer_UIxMailPartViewer_H__
23 #define __Mailer_UIxMailPartViewer_H__
24
25 #include <SOGoUI/UIxComponent.h>
26
27 /*
28   UIxMailPartViewer
29   
30   This class is the superclass for MIME content viewers.
31   
32   Since part-viewers can be reused for multiple parts, you need to be careful
33   in subclass to properly reset your specific state by overriding
34     - resetPathCaches
35
36   The part viewers have access to the rendering state using the
37     
38     [[self context] mailRenderingContext]
39     
40   object. This class provides several convenience methods to access mailpart
41   content.
42 */
43
44 @class NSArray;
45 @class NSData;
46 @class NSFormatter;
47
48 @class SOGoMailBodyPart;
49
50 @interface UIxMailPartViewer : UIxComponent
51 {
52   NSArray *partPath;
53   id      bodyInfo;
54   NSData  *flatContent;
55 }
56
57 /* accessors */
58
59 - (void)setPartPath:(NSArray *)_path;
60 - (NSArray *)partPath;
61
62 - (void)setBodyInfo:(id)_info;
63 - (id)bodyInfo;
64
65 - (SOGoMailBodyPart *) clientPart;
66
67 - (NSData *)flatContent;
68 - (NSData *)decodedFlatContent;
69 - (NSString *)flatContentAsString;
70
71 - (NSString *)preferredPathExtension;
72 - (NSString *)filename;
73 - (NSString *)filenameForDisplay;
74 - (NSFormatter *)sizeFormatter;
75
76 /* caches */
77
78 - (void)resetPathCaches;
79 - (void)resetBodyInfoCaches;
80
81 /* part URLs */
82
83 - (NSString *)pathToAttachmentObject; /* link to SoObject */
84 - (NSString *)pathToAttachment;       /* download link */
85
86 @end
87
88 #endif /* __Mailer_UIxMailPartViewer_H__ */