]> err.no Git - scalable-opengroupware.org/blob - SOGo/UI/Scheduler/UIxAppointmentProposal.m
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@224 d1b88da0-ebda-0310-925b-ed51d...
[scalable-opengroupware.org] / SOGo / UI / Scheduler / UIxAppointmentProposal.m
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: UIxAppointmentEditor.m 181 2004-08-11 15:13:25Z helge $
22
23 #include <SOGoUI/UIxComponent.h>
24
25 @interface UIxAppointmentProposal : UIxComponent
26 {
27   id item;
28   id currentDay;
29 }
30
31 @end
32
33 #include "common.h"
34
35 @implementation UIxAppointmentProposal
36
37 /* notifications */
38
39 - (void)sleep {
40   [self->currentDay release]; self->currentDay = nil;
41   [self->item       release]; self->item       = nil;
42   [super sleep];
43 }
44
45 /* accessors */
46
47 - (void)setItem:(id)_item {
48   ASSIGN(self->item, _item);
49 }
50 - (id)item {
51   return self->item;
52 }
53
54 - (void)setCurrentDay:(id)_day {
55   ASSIGN(self->currentDay, _day);
56 }
57 - (id)currentDay {
58   return self->currentDay;
59 }
60
61 - (NSArray *)hours {
62   // TODO: from 'earliest start' to 'latest endtime'
63   unsigned lStartHour = 9, lEndHour = 17, i;
64   NSMutableArray *ma;
65   
66   ma = [NSMutableArray arrayWithCapacity:lEndHour - lStartHour + 2];
67   for (i = lStartHour; i <= lEndHour; i++)
68     [ma addObject:[NSNumber numberWithInt:i]];
69   return ma;
70 }
71
72 - (NSArray *)days {
73   // TODO: from startdate to enddate
74   return [NSArray arrayWithObjects:@"2004-08-15", nil];
75 }
76
77 @end /* UIxAppointmentProposal */