mediawiki-extensions-Visual.../modules/es/tools/es.ClearButtonTool.js
2011-12-05 21:10:19 +00:00

51 lines
1.2 KiB
JavaScript

/**
* Creates an es.ClearButtonTool object.
*
* @class
* @constructor
* @extends {es.ButtonTool}
* @param {es.ToolbarView} toolbar
* @param {String} name
*/
es.ClearButtonTool = function( toolbar, name ) {
// Inheritance
es.ButtonTool.call( this, toolbar, name );
// Properties
this.$.addClass( 'es-toolbarButtonTool-disabled' );
this.pattern = /(textStyle\/|link\/).*/;
};
/* Methods */
es.ClearButtonTool.prototype.onClick = function() {
var tx = this.toolbar.surfaceView.model.getDocument().prepareContentAnnotation(
this.toolbar.surfaceView.currentSelection,
'clear',
this.pattern
);
this.toolbar.surfaceView.model.transact( tx );
this.toolbar.surfaceView.clearInsertionAnnotations();
};
es.ClearButtonTool.prototype.updateState = function( annotations ) {
var matchingAnnotations = es.DocumentModel.getMatchingAnnotations(
annotations.all, this.pattern
);
if ( matchingAnnotations.length === 0 ) {
this.$.addClass( 'es-toolbarButtonTool-disabled' );
} else {
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
}
};
/* Registration */
es.Tool.tools.clear = {
constructor: es.ClearButtonTool,
name: 'clear'
};
/* Inheritance */
es.extendClass( es.ClearButtonTool, es.ButtonTool );