summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/Label_3.html
blob: 14ae31e1664c1b605f37a97a588c49444bc8c0e2 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<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>Some tests for qx.ui.basic.Label. Click on the third and fifth button like widget to test the reflow possibilities.
    The debug log gives you information of the preferred dimensions.</p>
    <p>Tests for qx.renderer.font.Font added</p>
  </div>

  <script type="text/javascript">
  qx.core.Init.getInstance().defineMain(function()
  {
    var d = qx.ui.core.ClientDocument.getInstance();

    var c1 = new qx.ui.basic.Label("Hello qooxdoo!");

    c1.setLeft(20);
    c1.setTop(48);
    c1.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
    c1.setPadding(2, 4);

    c1.addEventListener("mouseover", function(e) {
      this.setFont("20px bold");
    });

    c1.addEventListener("mouseout", function(e) {
      this.setFont(null);
    });



    var c2 = new qx.ui.basic.Label("<h1>Welcome to the qooxdoo universe</h1><p>Enjoy the new era of web interface development.</p>");

    c2.setLeft(20);
    c2.setTop(100);
    c2.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
    c2.setPadding(8);




    var c3 = new qx.ui.basic.Label("Delete temporary data", null, null, false);

    c3.setLeft(20);
    c3.setTop(200);
    c3.setBorder(qx.renderer.border.BorderPresets.getInstance().outset);
    c3.setPadding(4, 6);
    c3.setBackgroundColor(new qx.renderer.color.Color("white"));

    c3.addEventListener("click", function()
    {
      if (this.getHtml() == "Delete temporary data")
      {
        this.setHtml("Thank you");
        this.setColor("red");
        this.setFont("bold");
      }
      else
      {
        this.setHtml("Delete temporary data");
        this.setColor(null);
        this.setFont(null);
      };
    });




    /*
    var c4f = new qx.renderer.font.Font(16, "Times New Roman");
    c4f.setBold(true);
    c4f.setItalic(true);
    c4f.setUnderline(true);
    */

    var c4 = new qx.ui.basic.Label("Hello qooxdoo!");

    c4.setLeft(20);
    c4.setTop(250);
    c4.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
    c4.setPadding(2, 4);
    // c4.setFont(c4f);

    // implicit usage of qx.renderer.font.FontCache
    c4.setFont("16px Times New Roman bold italic underline");





    var c5 = new qx.ui.basic.Label("Delete temporary data", null, null, false);

    c5.setBorder(qx.renderer.border.BorderPresets.getInstance().outset);
    c5.setPadding(4, 6);
    c5.setBackgroundColor(new qx.renderer.color.Color("white"));

    // re-use instance from above
    // c5.setFont("16px Times New Roman bold italic underline");

    // this is also possible and will be automatically converted to a single space seperated string
    c5.setFont(["16px", "Times New Roman", "bold", "italic", "underline"]);

    c5.addEventListener("click", function() {
      this.getHtml() == "Delete temporary data" ? this.setHtml("Thank you<br/>All your personal data was just deleted.<br/>Have Fun!") : this.setHtml("Delete temporary data");
    });


    var c5w = new qx.ui.layout.CanvasLayout;
    c5w.setBorder(qx.renderer.border.BorderPresets.getInstance().outset);
    c5w.setPadding(8);
    c5w.setLeft(20);
    c5w.setTop(350);
    c5w.setWidth("auto");
    c5w.setHeight("auto");

    c5w.add(c5);
    d.add(c5w);




    var c6 = new qx.ui.basic.Label("This is a long label", 50);

    c6.setTop(450);
    c6.setLeft(20);
    c6.setBorder(qx.renderer.border.BorderPresets.getInstance().black);


    var c7 = new qx.ui.basic.Label("This is a long label with long-words and more text", 100, null, false);

    c7.setTop(490);
    c7.setLeft(20);
    c7.setPadding(4);
    c7.setBorder(qx.renderer.border.BorderPresets.getInstance().outset);
    c7.setBackgroundColor("white");

    c7.addEventListener("click", function(e)
    {
      switch(this.getWidth())
      {
        case 50:
          this.setWidth(100);
          break;

        case 100:
          this.setWidth(150);
          break;

        case 150:
          this.setWidth(200);
          break;

        case 200:
          this.setWidth("auto");
          break;

        case "auto":
          this.setWidth(50);
          break;
      };
    });

    d.add(c1, c2, c3, c4, c5w, c6, c7);
  });
  </script>
</body>
</html>