]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxCalMonthOverview.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1236 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Scheduler / UIxCalMonthOverview.h
1 /*
2   Copyright (C) 2004 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id: UIxCalMonthOverview.h 181 2004-08-11 15:13:25Z helge $
22
23
24 #import "UIxCalMonthViewOld.h"
25
26 @class NSCalendarDate, NSString, NSDictionary, NSArray;
27
28 @interface UIxCalMonthOverview : UIxCalMonthViewOld
29 {
30     int dayIndex;
31     int dayOfWeek;
32     int weekOfYear;
33     NSCalendarDate *currentWeekStart;
34 }
35
36 - (void)setDayIndex:(int)_idx;
37 - (int)dayIndex;
38 - (void)setDayOfWeek:(int)_day;
39 - (int)dayOfWeek;
40
41 - (void)setCurrentWeekStartDate:(NSCalendarDate *)_date;
42 - (NSCalendarDate *)currentWeekStartDate;
43 - (void)setWeekOfYear:(int)_week;
44 - (int)weekOfYear;
45 - (int)year;
46 - (int)month;
47 - (NSString *)localizedDayOfWeekName;
48 - (NSDictionary *)currentWeekQueryParameters;
49
50 /* style sheet */
51
52 - (NSString *)weekStyle;
53 - (NSString *)contentStyle;
54
55 /* appointments */
56
57 // - (NSArray *)appointments;
58     
59 @end
60