mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-14 18:15:19 +00:00
519d225d2f
Change-Id: Ifa96a9f70fa8d149a4c403521aaa88a3e0546ef0
29 lines
615 B
JavaScript
29 lines
615 B
JavaScript
/**
|
|
* Creates an ve.ui.Tool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
*/
|
|
ve.ui.Tool = function( toolbar, name, title ) {
|
|
this.toolbar = toolbar;
|
|
this.name = name;
|
|
this.title = title;
|
|
this.$ = $( '<div class="es-tool"></div>' ).attr( 'title', this.title );
|
|
};
|
|
|
|
/* Static Members */
|
|
|
|
ve.ui.Tool.tools = {};
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.Tool.prototype.updateState = function() {
|
|
throw 'Tool.updateState not implemented in this subclass:' + this.constructor;
|
|
};
|
|
|
|
ve.ui.Tool.prototype.clearState = function() {
|
|
this.$.removeClass( 'es-toolbarButtonTool-down' );
|
|
};
|