Revision: 3075 http://vexi.svn.sourceforge.net/vexi/?rev=3075&view=rev Author: clrg Date: 2008-08-12 00:12:59 +0000 (Tue, 12 Aug 2008)
Log Message: ----------- More test stuff Modified Paths: -------------- trunk/widgets/org.vexi.widgets/src_dev/test/scroll.t Added Paths: ----------- trunk/widgets/org.vexi.widgets/src_dev/test/browser.t trunk/widgets/org.vexi.widgets/src_dev/test/clock.t Added: trunk/widgets/org.vexi.widgets/src_dev/test/browser.t =================================================================== --- trunk/widgets/org.vexi.widgets/src_dev/test/browser.t (rev 0) +++ trunk/widgets/org.vexi.widgets/src_dev/test/browser.t 2008-08-12 00:12:59 UTC (rev 3075) @@ -0,0 +1,16 @@ +<vexi xmlns:ui="vexi://ui" xmlns:w="vexi.widget"> + <w:surface /> + <ui:box frameheight="100"> + <w:textfield id="url" text="http://www.google.com" /> + <w:button id="launch" text="Launch browser" /> + + vexi.ui.frame = thisbox; + + $launch.action ++= function(v) { + vexi.log.info("launch browser: "+$url.text); + vexi.ui.browser($url.text); + return; + } + + </ui:box> +</vexi> \ No newline at end of file Added: trunk/widgets/org.vexi.widgets/src_dev/test/clock.t =================================================================== --- trunk/widgets/org.vexi.widgets/src_dev/test/clock.t (rev 0) +++ trunk/widgets/org.vexi.widgets/src_dev/test/clock.t 2008-08-12 00:12:59 UTC (rev 3075) @@ -0,0 +1,8 @@ +<vexi xmlns:ui="vexi://ui" xmlns:u="vexi.util" xmlns:w="vexi.widget"> + <w:surface /> + <ui:box orient="vertical"> + <ui:box text="Test Clock" shrink="true" /> + <u:clock id="clock" shrink="true" /> + vexi.ui.frame = thisbox; + </ui:box> +</vexi> \ No newline at end of file Modified: trunk/widgets/org.vexi.widgets/src_dev/test/scroll.t =================================================================== --- trunk/widgets/org.vexi.widgets/src_dev/test/scroll.t 2008-08-11 23:58:12 UTC (rev 3074) +++ trunk/widgets/org.vexi.widgets/src_dev/test/scroll.t 2008-08-12 00:12:59 UTC (rev 3075) @@ -1,7 +1,9 @@ <vexi xmlns:ui="vexi://ui" xmlns:w="vexi.widget"> <w:surface /> <ui:box frameheight="200"> - <ui:box /> + <ui:box> + <w:scrollbar orient="horizontal" /> + </ui:box> <w:bevel form="down"> <w:scrollpane> <ui:box shrink="true"> @@ -9,7 +11,9 @@ </ui:box> </w:scrollpane> </w:bevel> - <ui:box /> + <ui:box> + <w:scrollbar orient="vertical" /> + </ui:box> vexi.ui.frame = thisbox; </ui:box> </vexi> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Vexi-svn mailing list Vexi-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vexi-svn