]> err.no Git - sope/blob - sope-mime/NGMime/NGMimeHeaderFields.h
added reply-to parameter support for text mime types
[sope] / sope-mime / NGMime / NGMimeHeaderFields.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
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 // $Id$
22
23 #ifndef __NGMime_NGMimeHeaderFields_H__
24 #define __NGMime_NGMimeHeaderFields_H__
25
26 #import <Foundation/NSObject.h>
27 #include <NGMime/NGMimeDecls.h>
28
29 @class NSString, NSDictionary;
30
31 /*
32   NGMimeContentDispositionHeaderField
33   
34   This class is a special value object for holding (and parsing)
35   the content of a content-disposition MIME header field (primarily
36   used for attachments).
37 */
38
39 NGMime_EXPORT NSString *NGMimeContentDispositionInlineType;
40 NGMime_EXPORT NSString *NGMimeContentDispositionAttachmentType;
41 NGMime_EXPORT NSString *NGMimeContentDispositionFormType;
42
43 @interface NGMimeContentDispositionHeaderField : NSObject
44 {
45 @protected
46   NSString     *type;
47   NSDictionary *parameters;
48 }
49
50 - (id)initWithString:(NSString *)_value;
51
52 /* accessors */
53
54 - (NSString *)type;
55
56 /* parameters */
57
58 - (NSString *)name;
59 - (NSString *)filename;
60 - (NSString *)valueOfParameterWithName:(NSString *)_name;
61
62 - (NSString *)stringValue;
63 - (NSString *)parametersAsString;
64 - (BOOL)valueNeedsQuotes:(NSString *)_parameterValue;
65
66 @end
67
68 #endif /* __NGMime_NGMimeHeaderFields_H__ */