sogo/UI/SOGoUI/SOGoFolderAdvisory.h
Wolfgang Sourdeau 9e45431cd0 Monotone-Parent: baae213f1298842f132a9ed6584f30ec04446e62
Monotone-Revision: 1219e8fa67b77e630542e3726e865fc1bb663c61

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-04-02T20:20:11
Monotone-Branch: ca.inverse.sogo
2009-04-02 20:20:11 +00:00

93 lines
2.4 KiB
Objective-C

/* SOGoFolderAdvisory.h - this file is part of SOGo
*
* Copyright (C) 2007 Inverse inc.
*
* Author: Ludovic Marcotte <ludovic@inverse.ca>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef SOGOFOLDERADVISORY_H
#define SOGOFOLDERADVISORY_H
#import "UIxComponent.h"
#import <SOGo/SOGoFolder.h>
@interface SOGoFolderAdvisory : UIxComponent
{
NSString *recipientUID;
SOGoFolder *folderObject;
BOOL isSubject;
BOOL isBody;
}
- (void) setFolderObject: (SOGoFolder *) theFolder;
- (void) setRecipientUID: (NSString *) newRecipientUID;
- (void) send;
- (BOOL) isSubject;
- (BOOL) isBody;
- (NSString *) subject;
- (NSString *) body;
- (NSString *) folderMethod;
@end
@interface SOGoFolderAdditionAdvisory : SOGoFolderAdvisory
@end
@interface SOGoFolderRemovalAdvisory : SOGoFolderAdvisory
@end
@interface SOGoFolderDutchAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderDutchRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
@interface SOGoFolderEnglishAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderEnglishRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
@interface SOGoFolderFrenchAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderFrenchRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
@interface SOGoFolderGermanAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderGermanRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
@interface SOGoFolderItalianAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderItalianRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
@interface SOGoFolderSpanishAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderSpanishRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
#endif /* SOGOFOLDERADVISORY_H */