1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*
Copyright (C) 2000-2005 SKYRIX Software AG
This file is part of SOPE.
SOPE 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.
SOPE 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 SOPE; see the file COPYING. If not, write to the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
#include "WOInput.h"
@interface WORadioButtonList : WOInput
{
// WODynamicElement: extraAttributes
// WODynamicElement: otherTagString
// WOInput: name
// WOInput: value
// WOInput: disabled
@protected
WOAssociation *list;
WOAssociation *item;
WOAssociation *index;
WOAssociation *selection;
WOAssociation *prefix;
WOAssociation *suffix;
}
@end /* WORadioButtonList */
#include "decommon.h"
// TODO: add support for template? (does WO provide this?)
@implementation WORadioButtonList
- (id)initWithName:(NSString *)_name
associations:(NSDictionary *)_config
template:(WOElement *)_c
{
if ((self = [super initWithName:_name associations:_config template:_c])) {
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");
}
return self;
}
- (void)dealloc {
[self->list release];
[self->item release];
[self->index release];
[self->selection release];
[self->prefix release];
[self->suffix release];
[super dealloc];
}
/* processing requests */
- (void)takeValuesFromRequest:(WORequest *)_rq inContext:(WOContext *)_ctx {
WOComponent *sComponent = [_ctx component];
unsigned idx;
NSArray *array;
id formValue;
formValue = [_rq formValueForKey:OWFormElementName(self, _ctx)];
if (formValue == nil)
return;
idx = [formValue unsignedIntValue];
array = [self->list valueInComponent:sComponent];
/* setup item/index */
if ([self->index isValueSettable])
[self->index setUnsignedIntValue:idx inComponent:sComponent];
if ([self->item isValueSettable])
[self->item setValue:[array objectAtIndex:idx] inComponent:sComponent];
/* now check whether the item is disabled/allowed as the selection */
if ([self->disabled boolValueInComponent:sComponent])
return;
/* set selection if possible */
if ([self->selection isValueSettable]) {
[self->selection setValue:[array objectAtIndex:idx]
inComponent:sComponent];
}
}
- (id)invokeActionForRequest:(WORequest *)_req inContext:(WOContext *)_ctx {
return nil;
}
/* generating response */
- (void)appendToResponse:(WOResponse *)_response inContext:(WOContext *)_ctx {
WOComponent *sComponent;
NSArray *array;
unsigned goCount;
unsigned cnt;
NSString *n;
id sel;
BOOL canSetIndex, canSetItem;
if ([_ctx isRenderingDisabled]) return;
sComponent = [_ctx component];
array = [self->list valueInComponent:sComponent];
goCount = [array count];
if (goCount <= 0)
return;
n = OWFormElementName(self, _ctx);
sel = [self->selection valueInComponent:sComponent];
canSetIndex = [self->index isValueSettable];
canSetItem = [self->item isValueSettable];
for (cnt = 0; cnt < goCount; cnt++) {
id object;
object = [array objectAtIndex:cnt];
if (canSetIndex)
[self->index setUnsignedIntValue:cnt inComponent:sComponent];
if (canSetItem)
[self->item setValue:object inComponent:sComponent];
if (self->prefix != nil) {
WOResponse_AddString(_response,
[self->prefix stringValueInComponent:sComponent]);
}
/* add radio button */
{
WOResponse_AddCString(_response, "<input type=\"radio\" name=\"");
[_response appendContentHTMLAttributeValue:n];
WOResponse_AddCString(_response, "\" value=\"");
WOResponse_AddInt(_response, cnt);
WOResponse_AddCString(_response, "\"");
if (sel == object || [sel isEqual:object]) {
WOResponse_AddCString(_response,
(_ctx->wcFlags.allowEmptyAttributes
? " checked" : " checked=\"checked\""));
}
if ([self->disabled boolValueInComponent:sComponent]) {
WOResponse_AddCString(_response,
(_ctx->wcFlags.allowEmptyAttributes
? " disabled" : " disabled=\"disabled\""));
}
[self appendExtraAttributesToResponse:_response inContext:_ctx];
if (self->otherTagString != nil) {
NSString *s;
s = [self->otherTagString stringValueInComponent:sComponent];
WOResponse_AddChar(_response, ' ');
WOResponse_AddString(_response, s);
}
WOResponse_AddEmptyCloseParens(_response, _ctx);
// the value in a radio list is the string besides the button
if (self->value != nil) {
NSString *s;
s = [self->value stringValueInComponent:sComponent];
WOResponse_AddHtmlString(_response, s);
}
}
if (self->suffix != nil) {
WOResponse_AddString(_response,
[self->suffix stringValueInComponent:sComponent]);
}
}
}
/* description */
- (NSString *)associationDescription {
NSMutableString *str;
str = [NSMutableString stringWithCapacity:128];
[str appendString:[super associationDescription]];
if (self->list) [str appendFormat:@" list=%@", self->list];
if (self->item) [str appendFormat:@" item=%@", self->item];
if (self->index) [str appendFormat:@" index=%@", self->index];
if (self->prefix) [str appendFormat:@" prefix=%@", self->prefix];
if (self->suffix) [str appendFormat:@" suffix=%@", self->suffix];
if (self->selection) [str appendFormat:@" selection=%@", self->selection];
return str;
}
@end /* WORadioButtonList */
|