sogo/UI/Scheduler/UIxAppointmentView.h
Wolfgang Sourdeau e09ac2e383 Monotone-Parent: c33c456b52c6e6d4ee1f29bfd9ca57096b8d13be
Monotone-Revision: 5539e3c473023281dd04f7cb8a8fee051ac0735d

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-04-11T19:08:58
Monotone-Branch: ca.inverse.sogo
2007-04-11 19:08:58 +00:00

41 lines
867 B
Objective-C

// $Id: UIxAppointmentView.h 768 2005-07-15 00:13:01Z helge $
#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__ */