]> err.no Git - scalable-opengroupware.org/blob - UI/MailerUI/UIxMailFormatter.h
moved SOGo files up
[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 - (BOOL)showOnlyTimeForToday;
60 - (BOOL)showLabelsForNearDays;
61
62 @end
63
64 /*
65   TODO: the subject formatter should deal with the various 're:' like prefixes
66         and translate them into the native languages?
67         (or something like Re(5): ?)
68 */
69
70 @interface UIxSubjectFormatter : UIxMailFormatter
71 {
72   unsigned maxLength;
73 }
74
75 /* configuration */
76
77 - (unsigned int)maxLength;
78
79 /* labels */
80
81 - (NSString *)missingSubjectLabel;
82
83 /* specific formatters */
84
85 - (NSString *)stringForStringValue:(NSString *)_subject;
86 - (NSString *)stringForDataValue:(NSData *)_subject;
87
88 @end
89
90 @interface UIxEnvelopeAddressFormatter : UIxMailFormatter
91 {
92   NSString     *separator;
93   unsigned int maxLength;
94   struct {
95     int fullEMail:1;
96     int reserved:31;
97   } eafFlags;
98 }
99
100 - (id)initWithMaxLength:(unsigned int)_max generateFullEMail:(BOOL)_genFull;
101
102 @end
103
104 #endif /* __Mailer_UIxMailFormatter_H__ */