mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
74ed8e8766
Change-Id: Ibf6d4f08c4761727b2e3952a76e474c8221b38f9
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
/**
|
|
* VisualEditor user interface ButtonTool class.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Creates an ve.ui.ButtonTool object.
|
|
*
|
|
* @class
|
|
* @constructor
|
|
* @extends {ve.ui.Tool}
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {String} name
|
|
* @param title
|
|
*/
|
|
ve.ui.ButtonTool = function VeUiButtonTool( toolbar, name, title ) {
|
|
// Parent constructor
|
|
ve.ui.Tool.call( this, toolbar, name, title );
|
|
|
|
if ( !name ) {
|
|
return;
|
|
}
|
|
|
|
// Properties
|
|
this.$.addClass( 've-ui-toolbarButtonTool ve-ui-toolbarButtonTool-' + name );
|
|
|
|
// Events
|
|
var tool = this;
|
|
tool.$.on( {
|
|
'mousedown': function ( e ) {
|
|
if ( e.which === 1 ) {
|
|
e.preventDefault();
|
|
return false;
|
|
}
|
|
},
|
|
'mouseup': function ( e ) {
|
|
if ( e.which === 1 ) {
|
|
tool.onClick( e );
|
|
}
|
|
}
|
|
} );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.ButtonTool, ve.ui.Tool );
|
|
|
|
/* Methods */
|
|
|
|
ve.ui.ButtonTool.prototype.onClick = function () {
|
|
throw new Error( 'ButtonTool.onClick not implemented in this subclass:' + this.constructor );
|
|
};
|
|
|
|
ve.ui.ButtonTool.prototype.updateEnabled = function () {
|
|
if ( this.enabled ) {
|
|
this.$.removeClass( 've-ui-toolbarButtonTool-disabled' );
|
|
} else {
|
|
this.$.addClass( 've-ui-toolbarButtonTool-disabled' );
|
|
}
|
|
};
|