mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.Tool.js
Trevor Parscal a4e0e83f24 Cleanup tool API
* Moved to tool specific configuration to static properties (left tool instance specific stuff in the constructors)
* Added documentation for tool configurations
* Centralized typePattern matching for inspectors

Change-Id: Ieacf61b320c10fd37ea69a05e543313fa990b403
2012-10-31 11:10:17 -07:00

79 lines
1.5 KiB
JavaScript

/**
* VisualEditor user interface Tool class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Creates an ve.ui.Tool object.
*
* @class
* @abstract
* @constructor
* @param {ve.ui.Toolbar} toolbar
*/
ve.ui.Tool = function VeUiTool( toolbar ) {
// Properties
this.toolbar = toolbar;
this.$ = $( '<div class="ve-ui-tool"></div>' );
// Events
this.toolbar.addListenerMethods(
this, { 'updateState': 'onUpdateState', 'clearState': 'onClearState' }
);
// Intialization
this.$.attr( 'title', ve.msg( this.constructor.static.titleMessage ) );
};
/* Static Members */
ve.ui.Tool.static = {};
/**
* Symbolic name of tool.
*
* @abstract
* @static
* @member
* @type {String}
*/
ve.ui.Tool.static.name = '';
/**
* Message key for tool title.
*
* @abstract
* @static
* @member
* @type {String}
*/
ve.ui.Tool.static.titleMessage = '';
/* Methods */
/**
* Responds to the toolbar state being updated.
*
* This is an abstract method that must be overridden in a concrete subclass.
*
* @abstract
* @method
*/
ve.ui.Tool.prototype.onUpdateState = function () {
throw new Error( 'Tool.onUpdateState not implemented in this subclass:' + this.constructor );
};
/**
* Responds to the toolbar state being cleared.
*
* This is an abstract method that must be overridden in a concrete subclass.
*
* @abstract
* @method
*/
ve.ui.Tool.prototype.onClearState = function () {
throw new Error( 'Tool.onClearState not implemented in this subclass:' + this.constructor );
};