summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/DockLayout_1.html
blob: 6e4bab98be506c5b0b190f25efbfffda4cff4819 (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
<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">
    Simple Test for qx.ui.layout.DockLayout.
  </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("red");
    dl1.addTop(t1);

    var t2 = new qx.ui.basic.Terminator;
    t2.setWidth(150);
    t2.setBackgroundColor("yellow");
    dl1.addLeft(t2);
    
    var t3 = new qx.ui.basic.Terminator;
    t3.setBackgroundColor("blue");
    dl1.add(t3);
  });
  </script>
</body>
</html>