]> err.no Git - scalable-opengroupware.org/blob - UI/MailerUI/UIxMailFormatter.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1168 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / MailerUI / UIxMailFormatter.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_UIxMailFormatter_H__
23 #define __Mailer_UIxMailFormatter_H__
24
25 #import <Foundation/NSFormatter.h>
26
27 /*
28   UIxMailFormatter
29   
30   Formatters which render various mail related fields.
31 */
32
33 @class NSData, NSString, NSCalendarDate, NSTimeZone;
34
35 @interface UIxMailFormatter : NSFormatter
36 {
37 }
38
39 /* labels */
40
41 - (NSString *)labelForKey:(NSString *)_key;
42
43 @end
44
45 @interface UIxMailDateFormatter : UIxMailFormatter
46 {
47   NSCalendarDate *now;
48   NSTimeZone     *timeZone;
49   struct {
50     int showOnlyTimeForToday:1;
51     int showLabelsForNearDays:1; /* 'yesterday' instead of '2004-09-31' */
52     int reserved:30;
53   } dfFlags;
54 }
55
56 /* configuration */
57
58 - (NSTimeZone *)timeZone;
59 - (void) setTimeZone: (NSTimeZone *) newTimeZone;
60
61 - (BOOL)showOnlyTimeForToday;
62 - (BOOL)showLabelsForNearDays;
63
64 @end
65
66 /*
67   TODO: the subject formatter should deal with the various 're:' like prefixes
68         and translate them into the native languages?
69         (or something like Re(5): ?)
70 */
71
72 @interface UIxSubjectFormatter : UIxMailFormatter
73 {
74   unsigned maxLength;
75 }
76
77 /* configuration */
78
79 - (unsigned int)maxLength;
80
81 /* labels */
82
83 - (NSString *)missingSubjectLabel;
84
85 /* specific formatters */
86
87 - (NSString *)stringForStringValue:(NSString *)_subject;
88 - (NSString *)stringForDataValue:(NSData *)_subject;
89
90 @end
91
92 @interface UIxEnvelopeAddressFormatter : UIxMailFormatter
93 {
94   NSString     *separator;
95   unsigned int maxLength;
96   struct {
97     int fullEMail:1;
98     int reserved:31;
99   } eafFlags;
100 }
101
102 - (id)initWithMaxLength:(unsigned int)_max generateFullEMail:(BOOL)_genFull;
103
104 @end
105
106 #endif /* __Mailer_UIxMailFormatter_H__ */