2012-05-21 19:37:30 +00:00
|
|
|
/**
|
|
|
|
* Creates an ve.ui.ClearButtonTool object.
|
2012-06-12 18:43:56 +00:00
|
|
|
*
|
2012-05-21 19:37:30 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
|
|
|
* @extends {ve.ui.ButtonTool}
|
|
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
|
|
* @param {String} name
|
|
|
|
*/
|
|
|
|
ve.ui.ClearButtonTool = function( toolbar, name, title ) {
|
|
|
|
// Inheritance
|
|
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
|
|
|
|
|
|
|
// Properties
|
|
|
|
this.$.addClass( 'es-toolbarButtonTool-disabled' );
|
|
|
|
this.pattern = /(textStyle\/|link\/).*/;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
2012-06-11 23:29:09 +00:00
|
|
|
ve.ui.ClearButtonTool.prototype.getAnnotation = function(){
|
|
|
|
var surfaceView = this.toolbar.getSurfaceView(),
|
|
|
|
surfaceModel = surfaceView.getModel(),
|
|
|
|
documentModel = surfaceModel.getDocument(),
|
|
|
|
data = documentModel.getData( surfaceModel.getSelection() );
|
|
|
|
|
|
|
|
if ( data.length ) {
|
|
|
|
if ( ve.isPlainObject( data[0][1] ) ) {
|
|
|
|
var annotation = ve.dm.Document.getMatchingAnnotation( data[0][1], this.pattern );
|
2012-06-12 18:43:56 +00:00
|
|
|
if ( ve.isPlainObject( annotation ) ) {
|
2012-06-11 23:29:09 +00:00
|
|
|
return annotation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ;
|
|
|
|
};
|
|
|
|
|
2012-05-21 19:37:30 +00:00
|
|
|
ve.ui.ClearButtonTool.prototype.onClick = function() {
|
2012-06-06 18:27:23 +00:00
|
|
|
var surfaceView = this.toolbar.getSurfaceView(),
|
2012-06-11 23:29:09 +00:00
|
|
|
model = surfaceView.getModel();
|
|
|
|
|
2012-06-12 18:43:56 +00:00
|
|
|
model.annotate( 'clear', this.getAnnotation() );
|
2012-06-11 23:29:09 +00:00
|
|
|
surfaceView.showSelection( model.getSelection() );
|
2012-06-11 21:50:52 +00:00
|
|
|
surfaceView.contextView.closeInspector();
|
2012-05-21 19:37:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ve.ui.ClearButtonTool.prototype.updateState = function( annotations ) {
|
2012-06-06 18:27:23 +00:00
|
|
|
var matchingAnnotations = ve.dm.Document.getMatchingAnnotations(
|
|
|
|
annotations, this.pattern
|
2012-05-21 19:37:30 +00:00
|
|
|
);
|
2012-06-12 18:43:56 +00:00
|
|
|
|
|
|
|
if ( ve.isEmptyObject( matchingAnnotations ) ) {
|
2012-05-21 19:37:30 +00:00
|
|
|
this.$.addClass( 'es-toolbarButtonTool-disabled' );
|
|
|
|
} else {
|
|
|
|
this.$.removeClass( 'es-toolbarButtonTool-disabled' );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.Tool.tools.clear = {
|
|
|
|
'constructor': ve.ui.ClearButtonTool,
|
|
|
|
'name': 'clear',
|
|
|
|
'title': 'Clear formatting'
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.extendClass( ve.ui.ClearButtonTool, ve.ui.ButtonTool );
|