]> err.no Git - scalable-opengroupware.org/blob - UI/MailPartViewers/UIxMailPartViewer.h
do not use Anais
[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
37 @class NSData, NSArray, NSFormatter;
38
39 @interface UIxMailPartViewer : UIxComponent
40 {
41   NSArray *partPath;
42   id      bodyInfo;
43   NSData  *flatContent;
44 }
45
46 /* accessors */
47
48 - (void)setPartPath:(NSArray *)_path;
49 - (NSArray *)partPath;
50
51 - (void)setBodyInfo:(id)_info;
52 - (id)bodyInfo;
53
54 - (NSData *)flatContent;
55 - (NSData *)decodedFlatContent;
56 - (NSString *)flatContentAsString;
57
58 - (NSString *)preferredPathExtension;
59 - (NSString *)filename;
60 - (NSString *)filenameForDisplay;
61 - (NSFormatter *)sizeFormatter;
62
63 /* caches */
64
65 - (void)resetPathCaches;
66 - (void)resetBodyInfoCaches;
67
68 /* part URLs */
69
70 - (NSString *)pathToAttachmentObject; /* link to SoObject */
71 - (NSString *)pathToAttachment;       /* download link */
72
73 @end
74
75 #endif /* __Mailer_UIxMailPartViewer_H__ */