sogo/UI/Scheduler/UIxTaskView.h
Wolfgang Sourdeau 1c44c54502 Monotone-Parent: 8f5116023daecdd209e3db884fc339164a4ff419
Monotone-Revision: 284fc46fc7a7b10eb3aecddeb12116108147b6d1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-11T18:15:29
Monotone-Branch: ca.inverse.sogo
2006-10-11 18:15:29 +00:00

41 lines
787 B
Objective-C

// $Id: UIxTaskView.h 768 2005-07-15 00:13:01Z helge $
#ifndef __SOGo_UIxTaskView_H__
#define __SOGo_UIxTaskView_H__
#include <SOGoUI/UIxComponent.h>
@class NSCalendarDate;
@class iCalToDo;
@class iCalPerson;
@class SOGoDateFormatter;
@interface UIxTaskView : UIxComponent
{
iCalToDo* task;
iCalPerson* attendee;
SOGoDateFormatter *dateFormatter;
id item;
}
- (iCalToDo *) task;
/* 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_UIxTaskView_H__ */