1 /* SOGoMailReply.h - this file is part of SOGo
2  *
3  * Copyright (C) 2007-2015 Inverse inc.
4  *
5  * This file is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This file is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; see the file COPYING.  If not, write to
17  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20 
21 #ifndef SOGOMAILREPLY_H
22 #define SOGOMAILREPLY_H
23 
24 #import "SOGoMailForward.h"
25 
26 @class SOGoMailObject;
27 
28 @interface SOGoMailReply : SOGoMailForward
29 {
30   BOOL outlookMode;
31   NSString *replyPlacement;
32 }
33 
34 - (void) setOutlookMode: (BOOL) newOutlookMode;
35 - (BOOL) outlookMode;
36 - (void) setReplyPlacement: (NSString *) newPlacement;
37 - (BOOL) replyPlacementOnTop;
38 - (NSString *) messageBody;
39 
40 @end
41 
42 @interface SOGoMailArabicReply : SOGoMailReply
43 @end
44 
45 @interface SOGoMailBrazilianPortugueseReply : SOGoMailReply
46 @end
47 
48 @interface SOGoMailBulgarianReply : SOGoMailReply
49 @end
50 
51 @interface SOGoMailCatalanReply : SOGoMailReply
52 @end
53 
54 @interface SOGoMailChineseChinaReply : SOGoMailReply
55 @end
56 
57 @interface SOGoMailChineseTaiwanReply : SOGoMailReply
58 @end
59 
60 @interface SOGoMailCroatianReply : SOGoMailReply
61 @end
62 
63 @interface SOGoMailCzechReply : SOGoMailReply
64 @end
65 
66 @interface SOGoMailDanishReply : SOGoMailReply
67 @end
68 
69 @interface SOGoMailDutchReply : SOGoMailReply
70 @end
71 
72 @interface SOGoMailEnglishReply : SOGoMailReply
73 @end
74 
75 @interface SOGoMailFinnishReply : SOGoMailReply
76 @end
77 
78 @interface SOGoMailFrenchReply : SOGoMailReply
79 @end
80 
81 @interface SOGoMailGermanReply : SOGoMailReply
82 @end
83 
84 @interface SOGoMailHebrewReply : SOGoMailReply
85 @end
86 
87 @interface SOGoMailHungarianReply : SOGoMailReply
88 @end
89 
90 @interface SOGoMailIndonesianReply : SOGoMailReply
91 @end
92 
93 @interface SOGoMailIcelandicReply : SOGoMailReply
94 @end
95 
96 @interface SOGoMailItalianReply : SOGoMailReply
97 @end
98 
99 @interface SOGoMailJapaneseReply : SOGoMailReply
100 @end
101 
102 @interface SOGoMailLatvianReply : SOGoMailReply
103 @end
104 
105 @interface SOGoMailLithuanianReply : SOGoMailReply
106 @end
107 
108 @interface SOGoMailMacedonianReply : SOGoMailReply
109 @end
110 
111 @interface SOGoMailMontenegrinReply : SOGoMailReply
112 @end
113 
114 @interface SOGoMailNorwegianBokmalReply : SOGoMailReply
115 @end
116 
117 @interface SOGoMailNorwegianNynorskReply : SOGoMailReply
118 @end
119 
120 @interface SOGoMailPolishReply : SOGoMailReply
121 @end
122 
123 @interface SOGoMailPortugueseReply : SOGoMailReply
124 @end
125 
126 @interface SOGoMailRomanianReply : SOGoMailReply
127 @end
128 
129 @interface SOGoMailRussianReply : SOGoMailReply
130 @end
131 
132 @interface SOGoMailSerbianReply : SOGoMailReply
133 @end
134 
135 @interface SOGoMailSerbianLatinReply : SOGoMailReply
136 @end
137 
138 @interface SOGoMailSlovakReply : SOGoMailReply
139 @end
140 
141 @interface SOGoMailSlovenianReply : SOGoMailReply
142 @end
143 
144 @interface SOGoMailSpanishSpainReply : SOGoMailReply
145 @end
146 
147 @interface SOGoMailSpanishArgentinaReply : SOGoMailReply
148 @end
149 
150 @interface SOGoMailSwedishReply : SOGoMailReply
151 @end
152 
153 @interface SOGoMailTurkishTurkeyReply : SOGoMailReply
154 @end
155 
156 @interface SOGoMailUkrainianReply : SOGoMailReply
157 @end
158 
159 @interface SOGoMailWelshReply : SOGoMailReply
160 @end
161 
162 #endif /* SOGOMAILREPLY_H */
163