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 @interface UIxEnvelopeAddressFormatter : UIxMailFormatter
67 {
68   NSString     *separator;
69   unsigned int maxLength;
70   struct {
71     int fullEMail:1;
72     int reserved:31;
73   } eafFlags;
74 }
75 
76 - (id)initWithMaxLength:(unsigned int)_max generateFullEMail:(BOOL)_genFull;
77 
78 - (NSString *)stringForArray:(NSArray *)_addresses;
79 
80 @end
81 
82 #endif /* __Mailer_UIxMailFormatter_H__ */
83