diff options
Diffstat (limited to 'swat/apps/qooxdoo-examples/test/ToolBar_3.html')
-rw-r--r-- | swat/apps/qooxdoo-examples/test/ToolBar_3.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/swat/apps/qooxdoo-examples/test/ToolBar_3.html b/swat/apps/qooxdoo-examples/test/ToolBar_3.html new file mode 100644 index 0000000000..03870af769 --- /dev/null +++ b/swat/apps/qooxdoo-examples/test/ToolBar_3.html @@ -0,0 +1,39 @@ +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>qooxdoo » Demo</title> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/> + <!--[if IE]> + <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/> + <![endif]--> + <script type="text/javascript" src="../../script/qx.js"></script> +</head> +<body> + <script type="text/javascript" src="../../script/layout.js"></script> + + <div id="demoDescription"> + <p>Testing the new flash support for qx.ui.toolbar.ToolBarButtons (inherited from qx.ui.basic.Atom).</p> + </div> + + <script type="text/javascript"> + qx.core.Init.getInstance().defineMain(function() + { + var d = qx.ui.core.ClientDocument.getInstance(); + + var tb = new qx.ui.toolbar.ToolBar; + + tb.setTop(48); + tb.setLeft(20); + tb.setRight(335); + + d.add(tb); + + for (var i=1; i<8; i++) + { + var tbb = new qx.ui.toolbar.ToolBarButton("Flash #" + i, "icon/22/reload.png", 22, 22, "./image/flash/color/file" + i + ".swf"); + tb.add(tbb); + }; + }); + </script> +</body> +</html> |