summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-03 19:57:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:06 -0500
commit2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch)
treec44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html
parent57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff)
downloadsamba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old scripts need to still be available. I've reverted to having the old scripts be the default pages, and added an option to access the preview of the new SWAT. (This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html140
1 files changed, 0 insertions, 140 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html
deleted file mode 100644
index 0ef1f5c789..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_3.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<html>
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>qooxdoo &raquo; 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">
- Testing Layouts inside the qx.ui.layout.DockLayout. In this example centering through qx.ui.layout.HorizontalBoxLayout.
- </div>
-
- <script type="text/javascript">
- qx.core.Init.getInstance().defineMain(function()
- {
- var d = qx.ui.core.ClientDocument.getInstance();
-
- var dl1 = new qx.ui.layout.DockLayout;
-
- dl1.setTop(48);
- dl1.setLeft(20);
- dl1.setRight(335);
- dl1.setBottom(48);
-
- dl1.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
- dl1.setBackgroundColor("white");
-
- d.add(dl1);
-
-
-
- var t1 = new qx.ui.layout.HorizontalBoxLayout;
- t1.setHeight(50);
- t1.setBackgroundColor("red");
- t1.setWidth(null);
- t1.setVerticalChildrenAlign("middle");
- t1.setHorizontalChildrenAlign("center");
- t1.add(new qx.ui.basic.Image("icon/16/clock.png"));
- dl1.addTop(t1);
-
- var t2 = new qx.ui.layout.HorizontalBoxLayout;
- t2.setWidth(150);
- t2.setBackgroundColor("yellow");
- t2.setHeight(null);
- t2.setVerticalChildrenAlign("middle");
- t2.setHorizontalChildrenAlign("center");
- t2.add(new qx.ui.basic.Image("icon/16/clock.png"));
- dl1.addLeft(t2);
-
- var t3 = new qx.ui.layout.HorizontalBoxLayout;
- t3.setHeight(50);
- t3.setBackgroundColor("blue");
- t3.setWidth(null);
- t3.setVerticalChildrenAlign("middle");
- t3.setHorizontalChildrenAlign("center");
- t3.add(new qx.ui.basic.Image("icon/16/clock.png"));
- dl1.addBottom(t3);
-
- var t4 = new qx.ui.layout.HorizontalBoxLayout;
- t4.setWidth(150);
- t4.setBackgroundColor("green");
- t4.setHeight(null);
- t4.setVerticalChildrenAlign("middle");
- t4.setHorizontalChildrenAlign("center");
- t4.add(new qx.ui.basic.Image("icon/16/clock.png"));
- dl1.addRight(t4);
-
-
-
-
- var dl2 = new qx.ui.layout.DockLayout;
- dl2.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
- dl1.add(dl2);
-
-
-
-
-
-
-
- var t5 = new qx.ui.layout.HorizontalBoxLayout;
- t5.setHeight(50);
- t5.setBackgroundColor("fuchsia");
- t5.setWidth(null);
- t5.setVerticalChildrenAlign("middle");
- t5.setHorizontalChildrenAlign("center");
- t5.add(new qx.ui.basic.Image("icon/32/clock.png"));
- dl2.addTop(t5);
-
- var t6 = new qx.ui.layout.HorizontalBoxLayout;
- t6.setWidth(150);
- t6.setBackgroundColor("orange");
- t6.setHeight(null);
- t6.setVerticalChildrenAlign("middle");
- t6.setHorizontalChildrenAlign("center");
- t6.add(new qx.ui.basic.Image("icon/32/clock.png"));
- dl2.addLeft(t6);
-
- var t7 = new qx.ui.layout.HorizontalBoxLayout;
- t7.setHeight(50);
- t7.setBackgroundColor("aqua");
- t7.setWidth(null);
- t7.setVerticalChildrenAlign("middle");
- t7.setHorizontalChildrenAlign("center");
- t7.add(new qx.ui.basic.Image("icon/32/clock.png"));
- dl2.addBottom(t7);
-
- var t8 = new qx.ui.layout.HorizontalBoxLayout;
- t8.setWidth(150);
- t8.setBackgroundColor("lime");
- t8.setHeight(null);
- t8.setVerticalChildrenAlign("middle");
- t8.setHorizontalChildrenAlign("center");
- t8.add(new qx.ui.basic.Image("icon/32/clock.png"));
- dl2.addRight(t8);
-
-
-
-
-
- var hb1 = new qx.ui.layout.HorizontalBoxLayout;
-
- hb1.setBackgroundColor("silver");
- hb1.setVerticalChildrenAlign("middle");
- hb1.setHorizontalChildrenAlign("center");
- hb1.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
- hb1.setWidth(null);
- hb1.setHeight(null);
- hb1.add(new qx.ui.basic.Image("icon/64/clock.png"));
-
- dl2.add(hb1);
- });
- </script>
-</body>
-</html> \ No newline at end of file