Roxen.git
/
server
/
modules
/
graphics
/
gbutton.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/modules/graphics/gbutton.pike:18:
// icon_src -- icon reference // icon_data -- inline icon data // align -- left|center|right text alignment // align_icon -- left|center_before|center_after|right icon 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.
25
2000/02/
09
14
:
43:
29 nilsson Exp $";
+
constant cvs_version = "$Id: gbutton.pike,v 1.
26
2000/02/
10
05
:
29
:
54
nilsson Exp $";
constant thread_safe = 1; #include <module.h> inherit "module"; inherit "roxenlib"; roxen.ImageCache button_cache;
-
+
constant module_type = MODULE_PARSER;
+
constant module_name = "GButton";
+
constant module_doc = "Provides the <tt><gbutton>Title</gbutton></tt> "
+
"tag for drawing graphical buttons.";
-
array register_module()
-
{
-
return( ({ MODULE_PARSER,
-
"GButton",
-
"Provides the <tt><gbutton>Title</gbutton></tt> "
-
"tag for drawing graphical buttons.",
-
0, 1 }) );
-
}
-
-
+
TAGDOCUMENTATION #ifdef manual constant tagdoc=(["gbutton":"","gbutton-url":""]); /* "<table border=0>" "<tr><td><b>bgcolor</b></td><td>Background color inside and " "outside button</td></tr>" "<tr><td><b>bordercolor</b></td><td>Button border color</td></tr>"