forked from extern/egroupware
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
/**
|
|
* eGroupWare eTemplate2 - File which contains all interfaces
|
|
*
|
|
* @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
|
|
et2_core_inheritance;
|
|
*/
|
|
|
|
/**
|
|
* Interface for all widget classes, which are based on a DOM node.
|
|
*/
|
|
var et2_IDOMNode = new Interface({
|
|
/**
|
|
* Returns the DOM-Node of the current widget. The return value has to be
|
|
* a plain DOM node. If you want to return an jQuery object as you receive
|
|
* it with
|
|
*
|
|
* obj = $j(node);
|
|
*
|
|
* simply return obj[0];
|
|
*
|
|
* @param _sender The _sender parameter defines which widget is asking for
|
|
* the DOMNode. Depending on that, the widget may return different nodes.
|
|
* This is used in the grid. Normally the _sender parameter can be omitted
|
|
* in most implementations of the getDOMNode function.
|
|
* However, you should always define the _sender parameter when calling
|
|
* getDOMNode!
|
|
*/
|
|
getDOMNode: function(_sender) {}
|
|
});
|
|
|
|
/**
|
|
* Interface for all widgets which support returning a value
|
|
*/
|
|
var et2_IInput = new Interface({
|
|
/**
|
|
* getValue has to return the value of the input widget
|
|
*/
|
|
getValue: function() {},
|
|
|
|
/**
|
|
* Is dirty returns true if the value of the widget has changed since it
|
|
* was loaded.
|
|
*/
|
|
isDirty: function() {},
|
|
|
|
/**
|
|
* Causes the dirty flag to be reseted.
|
|
*/
|
|
resetDirty: function() {}
|
|
});
|
|
|
|
/**
|
|
* Interface for widgets which should be automatically resized
|
|
*/
|
|
var et2_IResizeable = new Interface({
|
|
/**
|
|
* Called whenever the window is resized
|
|
*/
|
|
resize: function() {}
|
|
});
|
|
|
|
/**
|
|
* Interface for widgets which want to e.g. perform clientside validation before
|
|
* the form is submitted.
|
|
*/
|
|
var et2_ISubmitListener = new Interface({
|
|
/**
|
|
* Called whenever the template gets submitted. Return false if you want to
|
|
* stop submission.
|
|
*
|
|
* @param _values contains the values which will be sent to the server.
|
|
* Listeners may change these values before they get submitted.
|
|
*/
|
|
submit: function(_values) {}
|
|
});
|
|
|
|
|