Roxen.git
/
server
/
modules
/
graphics
/
gbutton.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/modules/graphics/gbutton.pike:20:
// icon-data -- inline icon data // align -- left|center|right text alignment // align-icon -- left|center-before|center-after|right icon alignment // valign-icon -- above|middle|below icon vertical alignment // >Button text</gbutton> // // Alignment restriction: when text alignment is either left or right, icons // must also be aligned left or right.
-
constant cvs_version = "$Id: gbutton.pike,v 1.
105
2003/12/29 09:
52
:
48
grubba Exp $";
+
constant cvs_version = "$Id: gbutton.pike,v 1.
106
2003/12/29 09:
53
:
28
grubba Exp $";
constant thread_safe = 1; #include <module.h> inherit "module"; roxen.ImageCache button_cache; int do_ext; constant module_type = MODULE_TAG; constant module_name = "Graphics: GButton";
Roxen.git/server/modules/graphics/gbutton.pike:916:
img_attrs->height = size->ysize; } result = Roxen.make_tag("img", img_attrs, !args->noxml); // Make button clickable if not dimmed if(args->href && !new_args->dim) { mapping a_attrs = ([ "href" : args->href, ]);
-
if (args->target) a_attrs->target = args->target;
+
foreach(indices(args), string arg) if(has_value("target/onmousedown/onmouseup/onclick/ondblclick/" "onmouseout/onmouseover/onkeypress/onkeyup/" "onkeydown" / "/", lower_case(arg))) a_attrs[arg] = args[arg]; result = Roxen.make_container("a", a_attrs, result); } return 0; } } }