summaryrefslogtreecommitdiff
path: root/swat/apps/qooxdoo-examples/example/SplitPane_1.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2006-12-31 20:12:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:35:23 -0500
commitd1e09e2e6f9db62bbab84abb53e23ee73764178a (patch)
tree18e57f756611c9d3e10fb41bf7c09eeb795028dd /swat/apps/qooxdoo-examples/example/SplitPane_1.html
parent710dfce70ca9024d2f026518638bb193e914f4a0 (diff)
downloadsamba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.tar.gz
samba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.tar.bz2
samba-d1e09e2e6f9db62bbab84abb53e23ee73764178a.zip
r20446: rename swat directory to swat.obsolete; keeping it around since there is lots of useful info in it.
(This used to be commit 5f9f72a9cfab80561b23284001b67c4ea961757b)
Diffstat (limited to 'swat/apps/qooxdoo-examples/example/SplitPane_1.html')
-rw-r--r--swat/apps/qooxdoo-examples/example/SplitPane_1.html70
1 files changed, 0 insertions, 70 deletions
diff --git a/swat/apps/qooxdoo-examples/example/SplitPane_1.html b/swat/apps/qooxdoo-examples/example/SplitPane_1.html
deleted file mode 100644
index bdceb1f0a3..0000000000
--- a/swat/apps/qooxdoo-examples/example/SplitPane_1.html
+++ /dev/null
@@ -1,70 +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">
- <p>Test for Splitpane functionality.</p>
- </div>
-
- <script type="text/javascript">
-
- qx.core.Init.getInstance().defineMain(function()
- {
- var frame = new qx.ui.layout.CanvasLayout;
- frame.setLocation(20, 48);
- frame.setBottom(48);
- frame.setRight(300);
- frame.setBackgroundColor("#134275");
- frame.setPadding(20);
- frame.addToDocument();
-
- // the splitpane itself
- var splitpane = new qx.ui.splitpane.HorizontalSplitPane("1*", "2*");
- splitpane.setEdge(0);
- frame.add(splitpane);
-
- // left Widget
- var leftWidget = new qx.ui.form.TextArea("LeftWidget");
- leftWidget.setWrap(true);
- leftWidget.setBackgroundColor(new qx.renderer.color.Color("white"));
- leftWidget.setWidth("100%");
- leftWidget.setHeight("100%");
-
- // rightWidget (another splitpane)
- var rightWidget = new qx.ui.splitpane.VerticalSplitPane;
- rightWidget.setHeight("100%");
- rightWidget.setWidth("100%");
-
- // add widgets to splitpane
- splitpane.addLeft(leftWidget);
- splitpane.addRight(rightWidget);
-
-
-
- // right top widget
- var topWidget = new qx.ui.form.TextArea("Right Top Widget");
- topWidget.setBackgroundColor(new qx.renderer.color.Color("white"));
- topWidget.setHeight("100%");
- topWidget.setWidth("100%");
-
- // right bottom widget
- var bottomWidget = new qx.ui.embed.Iframe("http://www.qooxdoo.org");
- bottomWidget.setHeight("100%");
- bottomWidget.setWidth("100%");
-
- // add widgets to right splitpane
- rightWidget.addTop(topWidget);
- rightWidget.addBottom(bottomWidget);
- });
- </script>
-</body>
-</html> \ No newline at end of file