sogo/UI/Contacts/UIxContactsFilterPanel.m
Wolfgang Sourdeau 5781f10807 added warnings
Monotone-Parent: baa7bc0bc74871932c7f4e4d759f25a216d0c939
Monotone-Revision: 754cc32ff48ea7363d073e4e89e453b7a4d66a4c

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-10-10T18:27:21
Monotone-Branch: ca.inverse.sogo
2009-10-10 18:27:21 +00:00

113 lines
2.1 KiB
Objective-C

/*
Copyright (C) 2000-2005 SKYRIX Software AG
This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
OGo is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OGo; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#import <SOGoUI/UIxComponent.h>
@interface UIxContactsFilterPanel : UIxComponent
{
NSString *searchText;
NSString *searchCriteria;
}
@end
@implementation UIxContactsFilterPanel
static NSMutableArray *filters = nil;
+ (void) initialize
{
#warning how useful is this?
if (!filters)
filters = [[NSMutableArray alloc] initWithCapacity:4];
}
- (id) init
{
if ((self = [super init]))
{
searchText = nil;
searchCriteria = nil;
}
return self;
}
- (void) dealloc
{
[searchCriteria release];
[searchText release];
[super dealloc];
}
/* accessors */
- (void) setSearchText: (NSString *)_txt
{
ASSIGNCOPY (searchText, _txt);
}
- (void) setSearchCriteria: (NSString *)_txt
{
ASSIGNCOPY (searchText, _txt);
}
- (NSString *) searchText
{
if (!searchText)
searchText = [[self queryParameterForKey: @"search"] copy];
return searchText;
}
- (NSString *) searchCriteria
{
if (!searchCriteria)
searchCriteria = [[self queryParameterForKey: @"criteria"] copy];
return searchCriteria;
}
/* filters */
- (NSArray *) filters
{
return filters;
}
/* qualifiers */
- (NSString *) filterLabel
{
#if 1
return [[[self context] page] labelForKey: @"filter"];
#else
return [self valueForKey: @"filter"];
#endif
}
- (NSString *) selectedFilter
{
return [self queryParameterForKey: @"filterpopup"];
}
@end /* UIxContactsFilterPanel */