sogo/UI/Scheduler/UIxAppointmentView.h

41 lines
871 B
C
Raw Normal View History

// $Id: UIxAppointmentView.h 1045 2007-04-11 20:13:07Z wolfgang $
#ifndef __SOGo_UIxAppointmentView_H__
#define __SOGo_UIxAppointmentView_H__
#include <SOGoUI/UIxComponent.h>
@class NSCalendarDate;
@class iCalEvent;
@class iCalPerson;
@class SOGoDateFormatter;
@interface UIxAppointmentView : UIxComponent
{
iCalEvent* appointment;
iCalPerson* attendee;
SOGoDateFormatter *dateFormatter;
id item;
}
- (iCalEvent *) appointment;
/* permissions */
- (BOOL) canAccessApt;
- (BOOL) canEditApt;
- (SOGoDateFormatter *) dateFormatter;
- (NSCalendarDate *) startTime;
- (NSCalendarDate *) endTime;
- (NSString *) attributesTabLink;
- (NSString *) participantsTabLink;
- (NSString *) completeHrefForMethod: (NSString *) _method
withParameter: (NSString *) _param
forKey: (NSString *) _key;
@end
#endif /* __SOGo_UIxAppointmentView_H__ */