]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxAptTableView.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1043 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Scheduler / UIxAptTableView.m
1 /*
2   Copyright (C) 2000-2003 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 #include <NGObjWeb/SoComponent.h>
24
25 @class NSArray, NSCalendarDate;
26
27 @interface UIxAptTableView : SoComponent
28 {
29   NSArray *appointments;
30   id      appointment;
31 }
32
33 /* accessors */
34
35 - (NSArray *)appointments;
36 - (id)appointment;
37
38 @end
39
40 #include "common.h"
41
42 @implementation UIxAptTableView
43
44 - (void)dealloc {
45   [self->appointment  release];
46   [self->appointments release];
47   [super dealloc];
48 }
49
50 /* accessors */
51
52 - (void)setAppointments:(NSArray *)_apts {
53   ASSIGN(self->appointments, _apts);
54 }
55 - (NSArray *)appointments {
56   return self->appointments;
57 }
58
59 - (void)setAppointment:(id)_apt {
60   ASSIGN(self->appointment, _apt);
61 }
62 - (id)appointment {
63   return self->appointment;
64 }
65
66 - (NSString *)appointmentViewURL {
67   id pkey;
68   
69   if ((pkey = [[self appointment] valueForKey:@"dateId"]) == nil)
70     return nil;
71   
72   return [NSString stringWithFormat:@"%@/view", pkey];
73 }
74
75 @end /* UIxAptTableView */