mediawiki-extensions-Visual.../modules/ve/ui/ve.ui.Tool.js
Catrope 74ed8e8766 Rename ve_foo_bar back to VeFooBar per discussion
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
2012-09-06 16:15:55 -07:00

37 lines
833 B
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
* @param {String} name
*/
ve.ui.Tool = function VeUiTool( toolbar, name, title ) {
this.toolbar = toolbar;
this.name = name;
this.title = title;
this.$ = $( '<div class="ve-ui-tool"></div>' ).attr( 'title', this.title );
};
/* Static Members */
ve.ui.Tool.tools = {};
/* Methods */
ve.ui.Tool.prototype.updateState = function () {
throw new Error( 'Tool.updateState not implemented in this subclass:' + this.constructor );
};
ve.ui.Tool.prototype.clearState = function () {
this.$.removeClass( 've-ui-toolbarButtonTool-down' );
};