mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-21 14:43:31 +00:00
Monotone-Parent: f4861ebaae0a55ed464809d54f5ecd4f0bef9913
Monotone-Revision: d23a6bb43fc70fa7f45420eb293780b9dcfbd02c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-04-09T18:45:14 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -25,8 +25,11 @@
|
||||
|
||||
#include <NGObjWeb/SoComponent.h>
|
||||
|
||||
@class NSString, NSTimeZone, NSCalendarDate;
|
||||
@class iCalEntityObject;
|
||||
@class NSCalendarDate;
|
||||
@class NSMutableDictionary;
|
||||
@class NSString;
|
||||
@class NSTimeZone;
|
||||
@class iCalEvent;
|
||||
|
||||
/*
|
||||
* NOTE: We inherit from SoComponent in order to get the correct
|
||||
@@ -34,27 +37,30 @@
|
||||
*/
|
||||
@interface SOGoAptMailNotification : SoComponent
|
||||
{
|
||||
iCalEntityObject *apt;
|
||||
iCalEntityObject *previousApt;
|
||||
iCalEvent *apt;
|
||||
iCalEvent *previousApt;
|
||||
NSString *homePageURL;
|
||||
NSTimeZone *viewTZ;
|
||||
NSCalendarDate *oldStartDate;
|
||||
NSCalendarDate *newStartDate;
|
||||
BOOL isSubject;
|
||||
NSString *organizerName;
|
||||
NSMutableDictionary *values;
|
||||
}
|
||||
|
||||
- (iCalEntityObject *) apt;
|
||||
- (void) setApt: (iCalEntityObject *) theApt;
|
||||
- (void) setupValues;
|
||||
|
||||
- (iCalEntityObject *) previousApt;
|
||||
- (void) setPreviousApt: (iCalEntityObject *) theApt;
|
||||
- (iCalEvent *) apt;
|
||||
- (void) setApt: (iCalEvent *) theApt;
|
||||
|
||||
- (iCalEvent *) previousApt;
|
||||
- (void) setPreviousApt: (iCalEvent *) theApt;
|
||||
|
||||
- (void) setOrganizerName: (NSString *) theString;
|
||||
- (NSString *) organizerName;
|
||||
|
||||
- (BOOL) hasSentBy;
|
||||
- (NSString *) sentBy;
|
||||
- (NSCalendarDate *) oldStartDate;
|
||||
- (NSCalendarDate *) newStartDate;
|
||||
|
||||
- (NSString *) getSubject;
|
||||
- (NSString *) getBody;
|
||||
|
||||
Reference in New Issue
Block a user