Monotone-Parent: 6ccdcaac87d66173b1c675ce714a85b4fa7f82b5

Monotone-Revision: a8eaad13df3d9d67b260d73ffe79b6576abb4338

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-30T22:37:57
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-30 22:37:57 +00:00
parent ee65454c21
commit 30bc88e8d4
9 changed files with 472 additions and 218 deletions
+2 -14
View File
@@ -29,23 +29,16 @@
@class NSMutableArray;
@class NSCalendarDate;
@class NSNumber;
@class SOGoDateFormatter;
@class iCalPerson;
@interface UIxFreeBusyUserSelector : UIxComponent
{
SOGoDateFormatter *dateFormatter;
NSCalendarDate *startDate;
NSCalendarDate *endDate;
NSNumber *dayStartHour;
NSNumber *dayEndHour;
NSMutableArray *daysToDisplay;
NSMutableArray *hoursToDisplay;
NSCalendarDate *currentDayToDisplay;
NSNumber *currentHourToDisplay;
NSArray *contacts;
iCalPerson *currentContact;
NSString *selectorId;
}
@@ -54,7 +47,9 @@
- (void) setEndDate: (NSCalendarDate *) newEndDate;
- (void) setDayStartHour: (NSNumber *) newDayStartHour;
- (NSNumber *) dayStartHour;
- (void) setDayEndHour: (NSNumber *) newDayEndHour;
- (NSNumber *) dayEndHour;
- (void) setContacts: (NSArray *) contacts;
- (NSArray *) contacts;
@@ -62,13 +57,6 @@
- (void) setSelectorId: (NSString *) newSelectorId;
- (NSString *) selectorId;
- (NSArray *) daysToDisplay;
- (NSArray *) hoursToDisplay;
- (void) setCurrentDayToDisplay: (NSCalendarDate *) newCurrentDayToDisplay;
- (void) setCurrentHourToDisplay: (NSNumber *) newCurrentHourToDisplay;
- (NSCalendarDate *) currentDayToDisplay;
- (NSNumber *) currentHourToDisplay;
@end
#endif /* UIXFREEBUSYUSERSELECTOR_H */