summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js') (more/less context) (show whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js158
1 files changed, 158 insertions, 0 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js b/frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js
new file mode 100644
index 0000000..c872462
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Components/TabPanel/TabPanelController.js
@@ -0,0 +1,158 @@
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.PM) == 'undefined') { Clipperz.PM = {}; }
31if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
32if (typeof(Clipperz.PM.Components.TabPanel) == 'undefined') { Clipperz.PM.Components.TabPanel = {}; }
33
34Clipperz.PM.Components.TabPanel.TabPanelController = function(args) {
35 args = args || {};
36
37 Clipperz.PM.Components.TabPanel.TabPanelController.superclass.constructor.call(this);
38
39 this._name = args.name || 'undefined';
40 this._config = args.config;
41 this._selectedTab = args.selectedTab || ((MochiKit.Base.keys(args.config).length > 0) ? MochiKit.Base.keys(args.config)[0] : null);
42
43 this._tabs = {};
44 this._panels = {};
45
46 Clipperz.NotificationCenter.register(null, 'selectTab', this, 'handleSelectTabNotification');
47 return this;
48}
49
50//=============================================================================
51
52YAHOO.extendX(Clipperz.PM.Components.TabPanel.TabPanelController, YAHOO.ext.util.Observable, {
53
54 //-------------------------------------------------------------------------
55
56 'name': function() {
57 return this._name;
58 },
59
60 //-------------------------------------------------------------------------
61
62 'tabs': function() {
63 return this._tabs;
64 },
65
66 //-------------------------------------------------------------------------
67
68 'panels': function() {
69 return this._panels;
70 },
71
72 //-------------------------------------------------------------------------
73
74 'config': function() {
75 return this._config;
76 },
77
78 //-------------------------------------------------------------------------
79
80 'selectedTab': function() {
81 return this._selectedTab;
82 },
83
84 'setSelectedTab': function(aValue) {
85 this._selectedTab = aValue;
86 },
87
88 //-------------------------------------------------------------------------
89
90 'setUp': function() {
91 vartabId;
92
93//MochiKit.Logging.logDebug(">>> TabPanelController.setUp - config: " + Clipperz.Base.serializeJSON(this.config()));
94 for (tabId in this.config()) {
95 vartabElement;
96 varpanelElement;
97
98//MochiKit.Logging.logDebug("--- TabPanelController.setUp - tabId: " + tabId);
99//MochiKit.Logging.logDebug("--- TabPanelController.setUp - panelId: " + this.config()[tabId]);
100 tabElement = YAHOO.ext.Element.get(tabId);
101 tabElement.addClassOnOver("hover");
102 MochiKit.Signal.connect(tabId, 'onclick', this, 'selectTabHandler');
103
104 panelElement = YAHOO.ext.Element.get(this.config()[tabId]);
105
106 this._tabs[tabId] = tabElement;
107 this._panels[tabId] = panelElement;
108
109 if (tabId == this.selectedTab()) {
110 tabElement.addClass('selectedTab');
111 panelElement.addClass('selectedPanel');
112 } else {
113 panelElement.addClass('hiddenPanel');
114 }
115 }
116//MochiKit.Logging.logDebug("<<< TabPanelController.setUp");
117 },
118
119 //-------------------------------------------------------------------------
120
121 'selectTab': function(aTab) {
122 if (aTab != this.selectedTab()) {
123 this.tabs()[this.selectedTab()].removeClass('selectedTab');
124 this.panels()[this.selectedTab()].removeClass('selectedPanel').addClass('hiddenPanel');
125
126 this.tabs()[aTab].addClass('selectedTab');
127 this.panels()[aTab].addClass('selectedPanel').removeClass('hiddenPanel');
128
129 this.setSelectedTab(aTab);
130
131 Clipperz.NotificationCenter.notify(this, 'tabSelected', aTab);
132 }
133 },
134
135 //-------------------------------------------------------------------------
136
137 'selectTabHandler': function(anEvent) {
138 this.selectTab(anEvent.src().id);
139 },
140
141 //-------------------------------------------------------------------------
142
143 'handleSelectTabNotification': function(aNotificationEvent) {
144 var parameters;
145 var splittedParamters;
146 vartargetTabPanel;
147
148 parameters = aNotificationEvent.parameters();
149 splittedParamters = parameters.split('.');
150 targetTabPanel = splittedParamters[0];
151 if (targetTabPanel == this.name()) {
152 this.selectTab(splittedParamters[1])
153 }
154 },
155
156 //-------------------------------------------------------------------------
157 __syntaxFix__: "syntax fix"
158});