summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/YUI/IBLayoutManager.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/YUI/IBLayoutManager.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/YUI/IBLayoutManager.js114
1 files changed, 114 insertions, 0 deletions
diff --git a/frontend/beta/js/Clipperz/YUI/IBLayoutManager.js b/frontend/beta/js/Clipperz/YUI/IBLayoutManager.js
new file mode 100644
index 0000000..626b699
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/YUI/IBLayoutManager.js
@@ -0,0 +1,114 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
30if (typeof(Clipperz.YUI) == 'undefined') { Clipperz.YUI = {}; }
31
32
33Clipperz.YUI.IBLayoutManager = function(container, config) {
34 var regionName;
35 varelement;
36
37 config = config || {};
38
39 Clipperz.YUI.IBLayoutManager.superclass.constructor.call(this, container);
40 this.hideOnLayout = config.hideOnLayout || false;
41
42 element = YAHOO.ext.Element.get(container);
43 element.setStyle('position', 'absolute');
44 element.setStyle('overflow', 'hidden');
45
46 for (regionName in config.regions) {
47 var newRegion;
48
49 newRegion = new new Clipperz.YUI.IBLayoutRegion(this, regionName, config.regions[regionName]);
50 this.addRegion(regionName, newRegion);
51 }
52
53 this.layout();
54};
55
56YAHOO.extendX(Clipperz.YUI.IBLayoutManager, YAHOO.ext.LayoutManager, {
57
58 'toString': function() {
59 return "IBLayoutManager (" + this.el.id + ")";
60 },
61
62 //-----------------------------------------------------
63
64 'add': function(aName, aPanel) {
65 var regionName;
66
67 regionName = aName.toLowerCase();
68 return this.regions[regionName].add(aPanel);
69 },
70
71 //-----------------------------------------------------
72
73 'addRegion': function(aRegion) {
74 var regionName;
75
76 regionName = aRegion.name().toLowerCase();
77 if (!this.regions[regionName]) {
78//MochiKit.Logging.logDebug("--- adding region with name: " + aRegion.name());
79 this.regions[regionName] = aRegion;
80 } else {
81 // ????
82 }
83
84 return aRegion;
85 },
86
87 //-----------------------------------------------------
88
89 'getRegion': function(target){
90 return this.regions[target.toLowerCase()];
91 },
92
93 //-----------------------------------------------------
94
95 'layout': function(){
96 varregion;
97
98//MochiKit.Logging.logDebug(">>> IBLayoutManager.layout - regions: " + Clipperz.Base.serializeJSON(MochiKit.Base.keys(this.regions)));
99 for (region in this.regions) {
100//MochiKit.Logging.logDebug("--- IBLayoutManager.layout - region: " + region);
101 this.regions[region].layout();
102 }
103//MochiKit.Logging.logDebug("<<< IBLayoutManager.layout");
104 },
105
106 //-----------------------------------------------------
107
108 'getSize': function() {
109 return this.el.getSize();
110 },
111
112 //-----------------------------------------------------
113 __syntaxFix__: '__syntaxFix__'
114});