summaryrefslogtreecommitdiff
path: root/swat/apps/qooxdoo-examples/test/Image_1.html
blob: e206a03fa47ed791594fad625c01111484d33163 (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
<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>This is a test for the qx.ui.basic.Image constructor. It supports automatic preloading through qx.io.image.ImagePreloader, with error and load
    QxEvents which will be fired, and cross-browser PNG with extended alpha channels.</p>

    <p>PNG file in HTML (in Internet Explorer this should not be transparent):</p>
    <img src="../../../../framework/source/resource/icon/crystalsvg/48/hardware-info.png" width="48" height="48"/>
  </div>

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

    var i1 = new qx.ui.basic.Image("icon/48/favourite.png", 48, 48);
    with(i1)
    {
      setTop(48);
      setLeft(20);
    };

    d.add(i1);



    var i2 = new qx.ui.basic.Image("icon/48/favourite.png", 48, 48);
    with(i2)
    {
      setTop(48);
      setLeft(100);
    };

    d.add(i2);




    var i3 = new qx.ui.basic.Image("icon/48/favourite.png", 96, 96);
    with(i3)
    {
      setTop(120);
      setLeft(60);
      setResizeToInner(true);
    };

    /*
    i3.addEventListener("load", function() {
      new QxDebug("Bigger Symbol", "Preferred (Original) Size: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight());
    });
    */

    d.add(i3);




    var i4 = new qx.ui.basic.Image("icon/48/favourite.png", 24, 24);
    with(i4)
    {
      setTop(120);
      setLeft(20);
      setResizeToInner(true);
    };

    /*
    i4.addEventListener("load", function() {
      new QxDebug("Smaller Symbol", "Preferred (Original) Size: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight());
    });
    */

    d.add(i4);




    var i5 = new qx.ui.basic.Image("http://www.google.com/images/google_sm.gif");
    with(i5)
    {
      setTop(300);
      setLeft(20);
    };

    /*
    i5.addEventListener("load", function() {
      new QxDebug("Google Image", "Preferred (Original) Size: " + this.getPreferredBoxWidth() + "x" + this.getPreferredBoxHeight());
    });
    */

    d.add(i5);





    // Icon Themes
    qx.manager.object.ImageManager.getInstance().createThemeList(d, 300, 48);


  });
  </script>
</body>
</html>