]> err.no Git - scalable-opengroupware.org/blob - UI/SOGoUI/SOGoFolderAdvisory.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1212 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / SOGoUI / SOGoFolderAdvisory.h
1 /* SOGoFolderAdvisory.h - this file is part of SOGo
2  *
3  * Copyright (C) 2007 Inverse groupe conseil
4  *
5  * Author: Ludovic Marcotte <ludovic@inverse.ca>
6  *
7  * This file is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef SOGOFOLDERADVISORY_H
24 #define SOGOFOLDERADVISORY_H
25
26 #import "UIxComponent.h"
27 #import "../../SoObjects/SOGo/SOGoFolder.h"
28
29 @interface SOGoFolderAdvisory : UIxComponent
30 {
31   NSString *recipientUID;
32   SOGoFolder *folderObject;
33   BOOL isSubject;
34   BOOL isBody;
35 }
36
37 - (void) setFolderObject: (SOGoFolder *) theFolder;
38 - (void) setRecipientUID: (NSString *) newRecipientUID;
39 - (void) send;
40
41 - (BOOL) isSubject;
42 - (BOOL) isBody;
43
44 - (NSString *) subject;
45 - (NSString *) body;
46 - (NSString *) folderMethod;
47
48 @end
49
50 @interface SOGoFolderEnglishAdditionAdvisory : SOGoFolderAdvisory
51 @end
52
53 @interface SOGoFolderEnglishRemovalAdvisory : SOGoFolderAdvisory
54 @end
55
56 @interface SOGoFolderFrenchAdditionAdvisory : SOGoFolderAdvisory
57 @end
58
59 @interface SOGoFolderFrenchRemovalAdvisory : SOGoFolderAdvisory
60 @end
61
62 @interface SOGoFolderGermanAdditionAdvisory : SOGoFolderAdvisory
63 @end
64
65 @interface SOGoFolderGermanRemovalAdvisory : SOGoFolderAdvisory
66 @end
67
68 #endif /* SOGOFOLDERADVISORY_H */