]> err.no Git - scalable-opengroupware.org/blob - ZideStore/UI-X/Scheduler/OGoCalSelectTab.m
Fixed month navigation, some pretty printing
[scalable-opengroupware.org] / ZideStore / UI-X / Scheduler / OGoCalSelectTab.m
1 /*
2   Copyright (C) 2000-2004 SKYRIX Software AG
3
4   This file is part of OGo
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$
22
23
24 #include <CommonUI/OGoComponent.h>
25 #include <NGObjWeb/NGObjWeb.h>
26 #include <NGExtensions/NGExtensions.h>
27
28
29 @interface OGoCalSelectTab : OGoComponent
30 {
31     NSString *selection;
32     NSCalendarDate *currentDate;
33 }
34
35 @end
36
37
38 @implementation OGoCalSelectTab
39
40 - (void)dealloc {
41     [self->selection release];
42     [self->currentDate release];
43     [super dealloc];
44 }
45
46 - (void)setSelection:(NSString *)_selection {
47     ASSIGN(self->selection, _selection);
48 }
49
50 - (NSString *)selection {
51     return self->selection;
52 }
53
54 - (void)setCurrentDate:(NSCalendarDate *)_date {
55     ASSIGN(self->currentDate, _date);
56 }
57
58 - (NSCalendarDate *)currentDate {
59     return self->currentDate;
60 }
61
62
63 /* labels */
64
65
66 - (NSString *)dayLabel {
67     return [self->currentDate descriptionWithCalendarFormat:@"%d"];
68 }
69
70 - (NSString *)weekLabel {
71     return [NSString stringWithFormat:@"Week %d", [self->currentDate weekOfYear]];
72 }
73
74 - (NSString *)monthLabel {
75     return [self->currentDate descriptionWithCalendarFormat:@"%B"];
76 }
77
78 - (NSString *)yearLabel {
79     return [self->currentDate descriptionWithCalendarFormat:@"%Y"];
80 }
81
82
83 /* hrefs */
84
85
86 - (NSString *)daytabLink {
87     return [self completeHrefForMethod:@"dayoverview"];
88 }
89
90 - (NSString *)weektabLink {
91     return [self completeHrefForMethod:@"weekoverview"];
92 }
93
94 - (NSString *)monthtabLink {
95     return [self completeHrefForMethod:@"monthoverview"];
96 }
97
98 - (NSString *)yeartabLink {
99     return [self completeHrefForMethod:@"yearoverview"];
100 }
101
102
103 @end