]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxCalFilterPanel.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1236 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Scheduler / UIxCalFilterPanel.m
1 /* UIxContactsFilterPanel.m - this file is part of SOGo
2  *
3  * Copyright (C) 2006 Inverse groupe conseil
4  *
5  * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
6  *
7  * This file is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #import <Foundation/NSArray.h>
24 #import <Foundation/NSDictionary.h>
25 #import <Foundation/NSString.h>
26 #import <Foundation/NSKeyValueCoding.h>
27
28 #import <NGObjWeb/WOContext.h>
29
30 #import "UIxCalFilterPanel.h"
31
32 static NSArray *filters = nil;
33
34 @implementation UIxCalFilterPanel
35
36 + (void) initialize
37 {
38   static NSString *quals[]
39     = {@"view_today", @"view_all", @"view_next7", @"view_next14",
40        @"view_next31", @"view_thismonth", @"view_future",
41        @"view_selectedday" };
42
43   if (!filters)
44     {
45       filters = [NSArray arrayWithObjects: quals count: 8];
46       [filters retain];
47     }
48 }
49
50 - (id) init
51 {
52   if ((self = [super init]))
53     {
54       searchText = nil;
55       searchCriteria = nil;
56     }
57
58   return self;
59 }
60
61 - (void) dealloc
62 {
63   [self->searchCriteria release];
64   [self->searchText release];
65   [super dealloc];
66 }
67
68 /* accessors */
69
70 - (void) setSearchText: (NSString *)_txt
71 {
72   ASSIGNCOPY(self->searchText, _txt);
73 }
74
75 - (void) setSearchCriteria: (NSString *)_txt
76 {
77   ASSIGNCOPY(self->searchText, _txt);
78 }
79
80 - (NSString *) searchText
81 {
82   if (!searchText)
83     searchText = [[self queryParameterForKey: @"search"] copy];
84
85   return searchText;
86 }
87
88 - (NSString *) searchCriteria
89 {
90   if (!searchCriteria)
91     searchCriteria = [[self queryParameterForKey: @"criteria"] copy];
92
93   return searchCriteria;
94 }
95
96 /* filters */
97
98 - (NSArray *) filters
99 {
100   return filters;
101 }
102
103 /* qualifiers */
104
105 - (NSString *) filterLabel
106 {
107 #if 1
108   return [[[self context] page] labelForKey: [self valueForKey:@"filter"]];
109 #else
110   return [self valueForKey: @"filter"];
111 #endif
112 }
113
114 - (NSString *) selectedFilter
115 {
116   return [self queryParameterForKey: @"filterpopup"];
117 }
118
119 @end /* UIxCalFilterPanel */