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
hui.ui.Structure = function(options) {
this.name = options.name;
this.options = options || {};
this.element = hui.get(options.element);
hui.ui.extend(this);
};
hui.ui.Structure.create = function(options) {
options = hui.override({},options);
options.element = hui.dom.parse('<div class="hui_structure">'+
'<div class="hui_structure_middle">'+
'<div class="hui_structure_left hui_context_sidebar"></div>'+
'<div class="hui_structure_center"></div>'+
'</div>'+
'</div>');
return new hui.ui.Structure(options);
};
hui.ui.Structure.prototype = {
addLeft : function(widget) {
var tbody = hui.get.firstByClass(this.element,'hui_structure_left');
tbody.appendChild(widget.element);
},
addCenter : function(widget) {
var tbody = hui.get.firstByClass(this.element,'hui_structure_center');
tbody.appendChild(widget.element);
},
$$layout : function() {
var t = hui.get.firstByClass(this.element,'hui_structure_top');
var b = hui.get.firstByClass(this.element,'hui_structure_bottom');
var m = hui.get.firstByClass(this.element,'hui_structure_middle');
if (m) {
m.style.top = (t ? t.clientHeight+2 : 0)+'px';
m.style.bottom = (b ? b.clientHeight+2 : 0)+'px';
}
}
};