mediawiki-extensions-Visual.../modules/ve/ui/tools/ve.ui.ButtonTool.js
Catrope 6afed5e5cc Move ve2/ back to ve/
Change-Id: Ie51d8e48171fb1f84045d1560ee603cee62b91f6
2012-06-19 18:20:28 -07:00

54 lines
1 KiB
JavaScript

/**
* Creates an ve.ui.ButtonTool object.
*
* @class
* @constructor
* @param {ve.ui.Toolbar} toolbar
* @param {String} name
*/
ve.ui.ButtonTool = function( toolbar, name, title ) {
// Inheritance
ve.ui.Tool.call( this, toolbar, name, title );
if ( !name ) {
return;
}
// Properties
this.$.addClass( 'es-toolbarButtonTool' ).addClass( 'es-toolbarButtonTool-' + name );
// Events
var _this = this;
this.$.bind( {
'mousedown': function( e ) {
if ( e.which === 1 ) {
e.preventDefault();
return false;
}
},
'mouseup': function ( e ) {
if ( e.which === 1 ) {
_this.onClick( e );
}
}
} );
};
/* Methods */
ve.ui.ButtonTool.prototype.onClick = function() {
throw 'ButtonTool.onClick not implemented in this subclass:' + this.constructor;
};
ve.ui.ButtonTool.prototype.updateEnabled = function() {
if ( this.enabled ) {
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
} else {
this.$.addClass( 'es-toolbarButtonTool-disabled' );
}
};
/* Inheritance */
ve.extendClass( ve.ui.ButtonTool, ve.ui.Tool );