sogo/UI/SOGoUI/SOGoFolderAdvisory.h
Ludovic Marcotte dd0fc5a714 See ChangeLog
Monotone-Parent: 3b52714060113176005a0886d4a2e1a33ab89ecc
Monotone-Revision: 1a93c62b406f528779187ea92a5deb51969697ac

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2009-05-23T11:12:34
Monotone-Branch: ca.inverse.sogo
2009-05-23 11:12:34 +00:00

99 lines
2.6 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
@interface SOGoFolderRussianAdditionAdvisory : SOGoFolderAdditionAdvisory
@end
@interface SOGoFolderRussianRemovalAdvisory : SOGoFolderRemovalAdvisory
@end
#endif /* SOGOFOLDERADVISORY_H */