/* Copyright (C) 2000-2003 SKYRIX Software AG This file is part of OGo 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. */ // $Id$ #include "WOHTMLDynamicElement.h" #include "WOElement+private.h" #include "common.h" @interface WONestedList : WOHTMLDynamicElement { // WODynamicElement: extraAttributes // WODynamicElement: otherTagString @protected WOAssociation *list; WOAssociation *item; WOAssociation *value; WOAssociation *sublist; WOAssociation *action; WOAssociation *selection; WOAssociation *index; WOAssociation *level; WOAssociation *isOrdered; WOAssociation *prefix; WOAssociation *suffix; } @end /* WONestedList */ @implementation WONestedList - (id)initWithName:(NSString *)_name associations:(NSDictionary *)_config template:(WOElement *)_root { if ((self = [super initWithName:_name associations:_config template:_root])) { self->action = OWGetProperty(_config, @"action"); self->list = OWGetProperty(_config, @"list"); self->item = OWGetProperty(_config, @"item"); self->index = OWGetProperty(_config, @"index"); self->selection = OWGetProperty(_config, @"selection"); self->prefix = OWGetProperty(_config, @"prefix"); self->suffix = OWGetProperty(_config, @"suffix"); self->sublist = OWGetProperty(_config, @"sublist"); self->value = OWGetProperty(_config, @"value"); self->isOrdered = OWGetProperty(_config, @"isOrdered"); self->level = OWGetProperty(_config, @"level"); } return self; } #if !LIB_FOUNDATION_BOEHM_GC - (void)dealloc { RELEASE(self->level); RELEASE(self->isOrdered); RELEASE(self->value); RELEASE(self->sublist); RELEASE(self->list); RELEASE(self->item); RELEASE(self->index); RELEASE(self->selection); RELEASE(self->prefix); RELEASE(self->suffix); RELEASE(self->action); [super dealloc]; } #endif // OWResponder - (void)takeValuesFromRequest:(WORequest *)_req inContext:(WOContext *)_ctx { // not a container .. } - (id)invokeActionForRequest:(WORequest *)_request inContext:(WOContext *)_ctx { WOComponent *sComponent = [_ctx component]; id idxId = nil; id object = nil; unsigned nesting = 0; NSArray *array; array = [self->list valueInComponent:sComponent]; if ([array count] < 1) return nil; idxId = [_ctx currentElementID]; // top level index while ((idxId != nil) && (array != nil)) { unsigned idx = [idxId unsignedIntValue]; object = [array objectAtIndex:idx]; if ([self->level isValueSettable]) [self->level setUnsignedIntValue:nesting inComponent:sComponent]; if ([self->index isValueSettable]) [self->index setUnsignedIntValue:idx inComponent:sComponent]; if ([self->item isValueSettable]) [self->item setValue:object inComponent:sComponent]; array = [self->sublist valueInComponent:sComponent]; idxId = [_ctx consumeElementID]; // sub level index nesting++; } if ([self->selection isValueSettable]) [self->selection setValue:object inComponent:sComponent]; return [self executeAction:self->action inContext:_ctx]; } - (void)appendList:(NSArray *)_list atLevel:(unsigned int)_level toResponse:(WOResponse *)_response inContext:(WOContext *)_ctx { WOComponent *sComponent = [_ctx component]; unsigned count = [_list count]; unsigned cnt; if (count > 0) { BOOL ordered; if ([self->level isValueSettable]) [self->level setUnsignedIntValue:_level inComponent:sComponent]; ordered = [self->isOrdered boolValueInComponent:sComponent]; WOResponse_AddString(_response, ordered ? @"