initial checkin
[org.ibex.widgets.git] / src / ibex / theme / clickable.t
1 <!-- Copyleft 2004 - see COPYING for details [LGPL] -->
2
3 <ibex xmlns:lib="ibex.lib" xmlns:theme="ibex.theme">
4     <meta:doc>
5         Clickable:
6             A template for a clickable widget that also integrates
7             well with focusable widgets
8
9         Usage:
10             - Trap action to implement the action of your widget
11             - Trap active, hover, and normal to set the visible state
12
13         Properties:
14             action ---- : the widgets action
15             active ---- : the active state
16             activated - : when activated but not necessarily active
17             enabled --- : enables/disables widget
18             hover ----- : when the mouse hovers over the widget
19             normal ---- : the normal state of the widget
20             repeats --- : whether this is a repeating action on mousedown
21
22         See also:
23             ibex.theme.focusable
24             ibex.theme.repeatable
25     </meta:doc>
26
27     <theme:repeatable /> 
28     <lib:clickable enabled="true" repeats="false" />
29 </ibex>