initial checkin
[org.ibex.widgets.git] / src / org / ibex / theme / win2k / surface.t
1 <!-- Copyleft 2004 - see COPYING for details [LGPL] -->
2
3 <ibex xmlns="ibex.lib">
4     <surface />
5     <eventmanager />
6     <focusmanager />
7     <ui:box>
8
9         _KeyPressed += function(v) {
10             if (v == "tab") {
11                 surface.nextFocus();
12             } else if (v == "TAB") {
13                 surface.prevFocus();
14             }
15         }
16
17     </ui:box>
18 </ibex>