added somewhat broken simplex code, for posterity
[org.ibex.core.git] / tests / test2.t
1 <ibex xmlns:ui="ibex://ui">
2     <ui:box width="300" height="300" packed="false">
3         ibex.ui.frame = thisbox;
4 <!--
5         <ui:box fill="red" width="50" height="50" id="red" x="100" y="100" packed="false"/>
6 -->
7
8         // this thread makes things spin.
9         var rot = 0;
10         ibex.thread = function(f) { while(true) {
11              ibex.thread.sleep(100);
12              if (ibex.math.floor(rot / 90) == rot / 90)
13                $top.transform = "rotate(" + rot + ")";
14              $bot.transform = "rotate(" + (-2 * rot) + ")";
15              rot += 5;
16        } }
17 <ui:box fill="green" shrink="true" packed="false" align="center" x="150" y="150">
18         <ui:box fill="orange" colspan="2" minwidth="200" minheight="100" id="top" x="200" y="200"> 
19             <ui:box fill="green" width="100" height="18">
20                 <ui:box stroke="black" strokecolor="black" height="18" width="100" text="booya"/>
21             </ui:box>
22         </ui:box>
23         <ui:box fill="green" rowspan="2" minwidth="100" id="foo"/>
24         <ui:box fill="red" minwidth="50" minheight="80" />
25         <ui:box fill="pink" cols="5" height="80">
26             <ui:box height="10" colspan="5"/>
27             <ui:box width="10"/>
28             <ui:box height="10" fill="white" maxwidth="100"/>
29             <ui:box height="10" fill="black" colspan="2" minwidth="100"/>
30             <ui:box width="10"/>
31         </ui:box>
32         <ui:box fill="purple" minwidth="70" minheight="50">
33             <ui:box shrink="true" fill="yellow" align="center" id="top">
34                 <ui:box width="100" height="50" fill="red" id="bot"/>
35             </ui:box>
36         </ui:box>
37         <ui:box fill="yellow" colspan="2"/>
38 </ui:box>
39     </ui:box>
40 </ibex>