summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/Gallery_2.html
blob: 35cf6710384db9dc33c5e4a09983a93fd08bd7f1 (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
<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 file for qx.ui.embed.Gallery</p>
  </div>

  <style type="text/css">
    .qx_ui_embed_Gallery .galleryFrame{
      padding: 2px;
    }

    .qx_ui_embed_Gallery .galleryCell{
      border: 1px solid #444;
      background: #fff;
      margin: 2px;
      float: left;
      overflow: hidden;

      font-family: Tahoma, Verdana, sans-serif;
      font-size: 10px;

      cursor: default;

      -moz-user-select: none;
      user-select: none;
    }

    .qx_ui_embed_Gallery .galleryCell img{
      vertical-align: bottom;
      display: block;
    }

    .qx_ui_embed_Gallery .galleryCell .galleryTitle,
    .qx_ui_embed_Gallery .galleryCell .galleryComment{
      background: #eee;
      padding: 3px 6px;
      text-align: center;
      cursor: default;
      overflow: hidden;
      white-space: nowrap;
    }

    .qx_ui_embed_Gallery .galleryCell .galleryTitle{
      border-bottom: 1px solid #aaa;
    }

    .qx_ui_embed_Gallery .galleryCell .galleryComment{
      border-top: 1px solid #aaa;
    }

    .qx_ui_embed_Gallery .galleryCell-Selected{
      background: #DCE8F6;
      border: 1px solid #2760A1;
    }

    .qx_ui_embed_Gallery .galleryCell-Selected .galleryTitle,
    .qx_ui_embed_Gallery .galleryCell-Selected .galleryComment{
      background: #9BBFE7;
    }

    .qx_ui_embed_Gallery .galleryCell-Selected .galleryTitle{
      border-bottom: 1px dotted #2760A1;
    }

    .qx_ui_embed_Gallery .galleryCell-Selected .galleryComment{
      border-top: 1px dotted #2760A1;
    }


    /* customize */

    .qx_ui_embed_Gallery{
      background: #fff;
      padding: 5px;
    }

    .qx_ui_embed_Gallery .galleryCell{
      margin: 5px;
      border: 1px solid #DCDFE8;
    }

    .qx_ui_embed_Gallery .galleryCell-Selected{
      border: 1px solid #5E6474;
      background: #DADDE4;
    }
  </style>

  <script type="text/javascript">
    qx.core.Init.getInstance().defineMain(function() 
    {
      var galleryList = [];

      for (var i=0; i<100; i++)
      {
        galleryList.push({
          display : "bmzN9ci5",
          width : 350,
          height : 350,
          thumbWidth : 64,
          thumbHeight : 64,
          title : "gohome.png",
          timestamp : Math.random().toString(),
          comment : "Cool Comment",
          id : "7686191121780974-10682",
          src : qx.manager.object.AliasManager.getInstance().resolvePath("icon/64/tv.png")
        });
      };

      var gallery = new qx.ui.embed.Gallery(galleryList);

      gallery.setLeft(20);
      gallery.setRight(335);
      gallery.setTop(48);
      gallery.setBottom(48);
      gallery.setBorder(qx.renderer.border.BorderPresets.getInstance().black);
      gallery.setShowTitle(false);
      gallery.setShowComment(false);
      gallery.setDecorHeight(0);

      qx.ui.core.ClientDocument.getInstance().add(gallery);
    });
  </script>
</body>
</html>