From ef68436ac04da078ffdcacd7e1f785473a303d45 Mon Sep 17 00:00:00 2001 From: Giulio Cesare Solaroli Date: Sun, 02 Oct 2011 23:56:18 +0000 Subject: First version of the newly restructured repository --- (limited to 'frontend/gamma/js/Clipperz/PM/UI/Common/Components/TranslatorWidget.js') diff --git a/frontend/gamma/js/Clipperz/PM/UI/Common/Components/TranslatorWidget.js b/frontend/gamma/js/Clipperz/PM/UI/Common/Components/TranslatorWidget.js new file mode 100644 index 0000000..c31969e --- a/dev/null +++ b/frontend/gamma/js/Clipperz/PM/UI/Common/Components/TranslatorWidget.js @@ -0,0 +1,170 @@ +/* + +Copyright 2008-2011 Clipperz Srl + +This file is part of Clipperz's Javascript Crypto Library. +Javascript Crypto Library provides web developers with an extensive +and efficient set of cryptographic functions. The library aims to +obtain maximum execution speed while preserving modularity and +reusability. +For further information about its features and functionalities please +refer to http://www.clipperz.com + +* Javascript Crypto Library is free software: you can redistribute + it and/or modify it under the terms of the GNU Affero General Public + License as published by the Free Software Foundation, either version + 3 of the License, or (at your option) any later version. + +* Javascript Crypto Library is distributed in the hope that it will + be useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Affero General Public License for more details. + +* You should have received a copy of the GNU Affero General Public + License along with Javascript Crypto Library. If not, see + . + +*/ + +Clipperz.Base.module('Clipperz.PM.UI.Common.Components'); + +Clipperz.PM.UI.Common.Components.TranslatorWidget = function(args) { +Clipperz.log(">>> TranslatorWidget.new"); + args = args || {}; + + Clipperz.PM.UI.Common.Components.TranslatorWidget.superclass.constructor.apply(this, arguments); + +// this._element = args.element || Clipperz.Base.exception.raise('MandatoryParameter'); +// this._stringID = args.stringID || MochiKit.DOM.getNodeAttribute(this.element(), 'stringID') || Clipperz.Base.exception.raise('MandatoryParameter'); + +// MochiKit.Signal.connect(this.element(), 'onmouseenter', this, 'show'); +// MochiKit.Signal.connect(this.element(), 'onmouseleave', this, 'hide'); + +Clipperz.log("<<< TranslatorWidget.new"); + return this; +} + +//============================================================================= + +Clipperz.Base.extend(Clipperz.PM.UI.Common.Components.TranslatorWidget, Clipperz.PM.UI.Common.Components.BaseComponent, { + + //------------------------------------------------------------------------- + + 'toString': function () { + return "Clipperz.PM.UI.Common.Components.TranslatorWidget component"; + }, + + //------------------------------------------------------------------------- +/* + 'renderSelf': function() { + this.append(this.element(), {tag:'div', id:this.getId('tooltip'), cls:'tooltip ' + this.position(), children:[ + {tag:'div', id:this.getId('body'), cls:'tooltip_body', children:[ + {tag:'div', cls:'tooltip_text', children:[ + {tag:'span', html:this.text()} + ]}, + {tag:'div', id:this.getId('footer'), cls:'tooltip_footer'} + ]}, + {tag:'div', id:this.getId('arrow'), cls:'tooltip_arrow'} + ]}); + + this._boxDimensions = MochiKit.Style.getElementDimensions(this.getId('body')); +// this._boxDimensions.h += MochiKit.Style.getElementDimensions(this.getId('footer')).h; + + MochiKit.Style.hideElement(this.displayElement()); + MochiKit.Signal.connect(this.element(), 'onmouseenter', this, 'show'); + MochiKit.Signal.connect(this.element(), 'onmouseleave', this, 'hide'); + }, +*/ + //----------------------------------------------------- +/* + 'displayElement': function() { + return this.getElement('tooltip'); + }, +*/ + //------------------------------------------------------------------------- +/* + 'boxDimensions': function () { + return this._boxDimensions; + }, +*/ + //------------------------------------------------------------------------- + + 'show': function (anElement, aStringID) { + Clipperz.log(">>> Clipperz.PM.UI.Common.Components.TranslatorWidget.show: " + aStringID); +/* + var elementSizeAndPosition; + var arrowPosition; + var bodyPosition; + + arrowPosition = {}; + bodyPosition = {}; + + elementSizeAndPosition = Clipperz.Style.getSizeAndPosition(this.element()); + switch (this.position()) { + case 'ABOVE': + MochiKit.Style.setElementDimensions(this.getId('arrow'), {w:36, h:13}, 'px'); + bodyPosition.x = elementSizeAndPosition.position.x + (elementSizeAndPosition.dimensions.w/2 - this.boxDimensions().w/2); + bodyPosition.y = elementSizeAndPosition.position.y - this.boxDimensions().h - 13; + + arrowPosition.x = elementSizeAndPosition.position.x + (elementSizeAndPosition.dimensions.w/2 - 36/2); + arrowPosition.y = elementSizeAndPosition.position.y - 13; + break; + case 'BELOW': + MochiKit.Style.setElementDimensions(this.getId('arrow'), {w:36, h:13}, 'px'); + bodyPosition.x = elementSizeAndPosition.position.x + (elementSizeAndPosition.dimensions.w/2 - this.boxDimensions().w/2); + bodyPosition.y = elementSizeAndPosition.position.y + elementSizeAndPosition.dimensions.h + 13; + + arrowPosition.x = elementSizeAndPosition.position.x + (elementSizeAndPosition.dimensions.w/2 - 36/2); + arrowPosition.y = elementSizeAndPosition.position.y + elementSizeAndPosition.dimensions.h; + break; + case 'LEFT': + MochiKit.Style.setElementDimensions(this.getId('arrow'), {w:13, h:36}, 'px'); + bodyPosition.x = elementSizeAndPosition.position.x - this.boxDimensions().w - 13; + bodyPosition.y = elementSizeAndPosition.position.y + (elementSizeAndPosition.dimensions.h/2 - this.boxDimensions().h/2); + + arrowPosition.x = elementSizeAndPosition.position.x -13; + arrowPosition.y = elementSizeAndPosition.position.y + (elementSizeAndPosition.dimensions.h/2 - 36/2); + break; + case 'RIGHT': + MochiKit.Style.setElementDimensions(this.getId('arrow'), {w:13, h:36}, 'px'); + break; + } + +// MochiKit.Style.setElementPosition(this.getId('body'), bodyPosition); + MochiKit.Style.setElementPosition(this.getId('body'), bodyPosition); + MochiKit.Style.setElementPosition(this.getId('arrow'), arrowPosition); + MochiKit.Visual.appear(this.displayElement(), {duration:0.4}); +*/ + }, + + //------------------------------------------------------------------------- + + 'hide': function () { + Clipperz.log("<<< Clipperz.PM.UI.Common.Components.TranslatorWidget.hide"); +// MochiKit.Visual.fade(this.displayElement(), {duration:0.4}); + }, + + //------------------------------------------------------------------------- + __syntaxFix__: "syntax fix" +}); + +//############################################################################# + +Clipperz.PM.UI.Common.Components.TranslatorWidget._widget = null; + +Clipperz.PM.UI.Common.Components.TranslatorWidget.widget = function () { + if (Clipperz.PM.UI.Common.Components.TranslatorWidget._widget == null) { + Clipperz.PM.UI.Common.Components.TranslatorWidget._widget = new Clipperz.PM.UI.Common.Components.TranslatorWidget(); + } + + return Clipperz.PM.UI.Common.Components.TranslatorWidget._widget; +} +Clipperz.PM.UI.Common.Components.TranslatorWidget.show = function (anElement, aStringID) { + Clipperz.PM.UI.Common.Components.TranslatorWidget.widget().show(anElement, aStringID); +} + +Clipperz.PM.UI.Common.Components.TranslatorWidget.hide = function () { + Clipperz.PM.UI.Common.Components.TranslatorWidget.widget().hide(); +} + +//############################################################################# -- cgit v0.9.0.2