/** * eGroupWare eTemplate2 - JS Widget base class * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License * @package etemplate * @subpackage api * @link http://www.egroupware.org * @author Andreas Stöckel * @copyright Stylite 2011 * @version $Id$ */ "use strict"; /*egw:uses jquery.jquery; lib/tooltip; et2_DOMWidget; */ /** * Interface for widgets which have the align attribute */ var et2_IAligned = new Interface({ get_align: function() {} }); /** * Class which manages the DOM node itself. The simpleWidget class is derrived * from et2_DOMWidget and implements the getDOMNode function. A setDOMNode * function is provided, which attatches the given node to the DOM if possible. */ var et2_baseWidget = et2_DOMWidget.extend(et2_IAligned, { attributes: { "statustext": { "name": "Tooltip", "type": "string", "description": "Tooltip which is shown for this element" }, "align": { "name": "Align", "type": "string", "default": "left", "description": "Position of this element in the parent hbox" } }, init: function() { this.align = "left"; this._super.apply(this, arguments); this.node = null; this.statustext = ""; this._tooltipElem = null; }, detatchFromDOM: function() { // Detach this node from the tooltip node if (this._tooltipElem) { egw_global_tooltip.unbindFromElement(this._tooltipElem); this._tooltipElem = null; } this._super.apply(this, arguments); }, attachToDOM: function() { this._super.apply(this,arguments); // Update the statustext this.set_statustext(this.statustext); }, setDOMNode: function(_node) { if (_node != this.node) { // Deatch the old node from the DOM this.detatchFromDOM(); // Set the new DOM-Node this.node = _node; // Attatch the DOM-Node to the tree return this.attachToDOM(); } return false; }, getDOMNode: function() { return this.node; }, getTooltipElement: function() { return this.getDOMNode(this); }, set_statustext: function(_value) { // Don't execute the code below, if no tooltip will be attached/detached if (_value == "" && !this._tooltipElem) { return; } this.statustext = _value; //Get the domnode the tooltip should be attached to var elem = $j(this.getTooltipElement()); if (elem) { //If a tooltip is already attached to the element, remove it first if (this._tooltipElem) { egw_global_tooltip.unbindFromElement(this._tooltipElem); this._tooltipElem = null; } if (_value && _value != '') { egw_global_tooltip.bindToElement(elem, _value); this._tooltipElem = elem; } } }, set_align: function(_value) { this.align = _value; }, get_align: function(_value) { return this.align; } }); /** * Simple container object */ var et2_container = et2_baseWidget.extend({ init: function() { this._super.apply(this, arguments); this.setDOMNode(document.createElement("div")); } }); /** * Container object for not-yet supported widgets */ var et2_placeholder = et2_baseWidget.extend({ init: function() { this._super.apply(this, arguments); // The attrNodes object will hold the DOM nodes which represent the // values of this object this.attrNodes = {}; this.visible = false; // Create the placeholder div this.placeDiv = $j(document.createElement("span")) .addClass("et2_placeholder"); var headerNode = $j(document.createElement("span")) .text(this._type) .addClass("et2_caption") .appendTo(this.placeDiv); var attrsCntr = $j(document.createElement("span")) .appendTo(this.placeDiv) .hide(); headerNode.click(this, function(e) { e.data.visible = !e.data.visible; if (e.data.visible) { attrsCntr.show(); } else { attrsCntr.hide(); } }); for (var key in this.options) { if (typeof this.options[key] != "undefined") { if (typeof this.attrNodes[key] == "undefined") { this.attrNodes[key] = $j(document.createElement("span")) .addClass("et2_attr"); attrsCntr.append(this.attrNodes[key]); } this.attrNodes[key].text(key + "=" + this.options[key]); } } this.setDOMNode(this.placeDiv[0]); } });