summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/SplitPane_1.html
blob: aa12e85243b5244e026eb9a42cde641bdbd33f73 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<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 with enabled live resize.</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);




    var toggleButton = new qx.ui.form.Button("Toggle Layout", "icon/16/rotate.png");
    toggleButton.setBottom(48);
    toggleButton.setLeft(20);
    toggleButton.addToDocument();
    toggleButton.addEventListener("execute", function(e)
    {
      if (splitpane.getOrientation() == "horizontal")
      {
        splitpane.setOrientation("vertical");
        rightWidget.setOrientation("horizontal");
      }
      else
      {
        splitpane.setOrientation("horizontal");
        rightWidget.setOrientation("vertical");
      }
    });
  });
  </script>
</body>
</html>