mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 11:55:24 +00:00
Monotone-Parent: b8fd5dfd59140030da4818862fa172e77f0d50fb
Monotone-Revision: ed6bb8dbb9400c9327fb86fd4e43cbc306ad95d5 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-08-24T18:56:24 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
/* UIxCalDayTable.h - this file is part of $PROJECT_NAME_HERE$
|
||||
*
|
||||
* Copyright (C) 2006 Inverse groupe conseil
|
||||
*
|
||||
* Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
*
|
||||
* This file is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This file is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef UIXCALDAYTABLE_H
|
||||
#define UIXCALDAYTABLE_H
|
||||
|
||||
#import "UIxCalView.h"
|
||||
|
||||
@class NSArray;
|
||||
@class NSCalendarDay;
|
||||
@class NSString;
|
||||
@class SOGoDateFormatter;
|
||||
|
||||
@interface UIxCalDayTable : UIxCalView
|
||||
{
|
||||
int numberOfDays;
|
||||
NSCalendarDate *startDate;
|
||||
NSCalendarDate *currentTableDay;
|
||||
NSString *currentTableHour;
|
||||
NSArray *daysToDisplay;
|
||||
NSMutableArray *hoursToDisplay;
|
||||
SOGoDateFormatter *dateFormatter;
|
||||
|
||||
NSString *cssClass;
|
||||
NSString *cssId;
|
||||
}
|
||||
|
||||
- (void) setCSSClass: (NSString *) aCssClass;
|
||||
- (NSString *) cssClass;
|
||||
|
||||
- (void) setCSSId: (NSString *) aCssId;
|
||||
- (NSString *) cssId;
|
||||
|
||||
- (void) setNumberOfDays: (NSString *) aNumber;
|
||||
|
||||
- (void) setStartDate: (NSCalendarDate *) aStartDate;
|
||||
- (NSCalendarDate *) startDate;
|
||||
- (NSCalendarDate *) endDate;
|
||||
|
||||
- (NSArray *) daysToDisplay;
|
||||
- (void) setCurrentTableDay: (NSCalendarDate *) aTableDay;
|
||||
- (NSCalendarDate *) currentTableDay;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* UIXCALDAYTABLE_H */
|
||||
Reference in New Issue
Block a user