/* 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 /* < scriptName (obligatory !!!) > identifier > prefix Generates an ShiftClick JavaScript for CheckBoxes. Example: // wod: ShiftClickScript: JSShiftClick { scriptName = scriptName; } Repetition: WORepetition { list = (1, 2, 3, 4, 5, 6, 7, 8, 9); item = index; } CheckBox: WOCheckBox { checked = checked; value = index; // = index" this must be done !!! onClick = scriptCall; // = "scriptName(index)" this must be done !!! } // html: <#ShiftClickScript /> <#Repetition> <#CheckBox /> */ @interface JSShiftClick : WODynamicElement { WOAssociation *identifier; WOAssociation *prefix; WOAssociation *scriptName; } @end #include "common.h" #include static NSString *JSShiftClick_Script = @""; @implementation JSShiftClick - (id)initWithName:(NSString *)_name associations:(NSDictionary *)_config template:(WOElement *)_tmp { if ((self = [super initWithName:_name associations:_config template:_tmp])) { self->identifier = WOExtGetProperty(_config, @"identifier"); self->prefix = WOExtGetProperty(_config, @"prefix"); self->scriptName = WOExtGetProperty(_config, @"scriptName"); } return self; } - (void)dealloc { [self->identifier release]; [self->prefix release]; [self->scriptName release]; [super dealloc]; } /* response generation */ - (void)appendToResponse:(WOResponse *)_response inContext:(WOContext *)_ctx { WEClientCapabilities *ccaps = nil; NSString *eid = nil; NSString *prfx = nil; ccaps = [[_ctx request] clientCapabilities]; eid = [self->identifier stringValueInComponent:[_ctx component]]; eid = (eid) ? eid : [_ctx elementID]; eid = [[eid componentsSeparatedByString:@"."] componentsJoinedByString:@"_"]; prfx = [self->prefix stringValueInComponent:[_ctx component]]; prfx = (prfx) ? prfx : @""; if ([ccaps isJavaScriptBrowser]) { NSString *s; s = [[NSString alloc] initWithFormat:JSShiftClick_Script, eid, eid, eid, prfx, eid, prfx]; [_response appendContentString:s]; [s release]; } if ([self->scriptName isValueSettable]) { NSString *sName = nil; sName = [@"shiftClick" stringByAppendingString:eid]; [self->scriptName setValue:sName inComponent:[_ctx component]]; } #if DEBUG else { NSLog(@"Warning: JSShiftClick: 'scriptName' is not settable!!!"); } #endif } @end /* JSShiftClick */