blob: 3bf090b428ed94a61f704d04dce4215c1ec2ac72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<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">
Simple Test for qx.ui.layout.DockLayout. But with a dynamic child. Simple click on "Hello World" to see the effect.
</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(2, "outset");
dl1.setBackgroundColor("white");
d.add(dl1);
var t1 = new qx.ui.basic.Terminator;
t1.setHeight(50);
t1.setBackgroundColor("white");
t1.setBorder(qx.renderer.border.BorderPresets.getInstance().inset);
dl1.addTop(t1);
var t2 = new qx.ui.basic.Label("Hello World");
t2.setHeight(null);
t2.setBackgroundColor("white");
t2.setPadding(10);
t2.setBorder(qx.renderer.border.BorderPresets.getInstance().inset);
dl1.addLeft(t2);
var t3 = new qx.ui.layout.HorizontalBoxLayout;
t3.setWidth(null);
t3.setHeight(null);
t3.setBorder(qx.renderer.border.BorderPresets.getInstance().inset);
t3.setBackgroundColor("white");
t3.setHorizontalChildrenAlign("center");
t3.setVerticalChildrenAlign("middle");
dl1.add(t3);
t3.add(new qx.ui.basic.Image("icon/128/bitmapgraphics.png"));
t2.addEventListener("click", function(e) {
this.setHtml(this.getHtml() == "Hello World" ? "Real long text, especially to test this cool behaviour" : "Hello World");
});
});
</script>
</body>
</html>
|