mediawiki-extensions-Visual.../modules/es/tools/es.AnnotationButtonTool.js

72 lines
1.7 KiB
JavaScript
Raw Normal View History

2011-12-05 21:10:19 +00:00
/**
* Creates an es.AnnotationButtonTool object.
*
* @class
* @constructor
* @extends {es.ButtonTool}
* @param {es.ToolbarView} toolbar
* @param {String} name
* @param {Object} annotation
*/
es.AnnotationButtonTool = function( toolbar, name, data ) {
2011-12-05 21:10:19 +00:00
// Inheritance
2011-12-04 02:59:53 +00:00
es.ButtonTool.call( this, toolbar, name );
2011-12-05 21:10:19 +00:00
// Properties
this.annotation = data;
2011-12-04 02:59:53 +00:00
};
2011-12-05 21:10:19 +00:00
/* Methods */
2011-12-04 02:59:53 +00:00
es.AnnotationButtonTool.prototype.onClick = function() {
var method;
if ( this.$.hasClass( 'es-toolbarButtonTool-down' ) ) {
method = 'clear';
2011-12-05 21:10:19 +00:00
this.toolbar.surfaceView.removeInsertionAnnotation( this.annotation );
2011-12-04 02:59:53 +00:00
} else {
method = 'set';
2011-12-05 21:10:19 +00:00
this.toolbar.surfaceView.addInsertionAnnotation( this.annotation );
2011-12-04 02:59:53 +00:00
}
var tx = this.toolbar.surfaceView.model.getDocument().prepareContentAnnotation(
this.toolbar.surfaceView.currentSelection,
method,
2011-12-05 21:10:19 +00:00
this.annotation
2011-12-04 02:59:53 +00:00
);
this.toolbar.surfaceView.model.transact( tx );
};
es.AnnotationButtonTool.prototype.updateState = function( annotations ) {
for ( var i = 0; i < annotations.full.length; i++ ) {
2011-12-05 21:10:19 +00:00
if ( annotations.full[i].type === this.annotation.type ) {
2011-12-04 02:59:53 +00:00
this.$.addClass( 'es-toolbarButtonTool-down' );
return;
}
}
this.$.removeClass( 'es-toolbarButtonTool-down' );
};
2011-12-05 21:10:19 +00:00
/* Registration */
2011-12-04 02:59:53 +00:00
es.Tool.tools.bold = {
constructor: es.AnnotationButtonTool,
name: 'bold',
data: { 'type': 'textStyle/bold' }
2011-12-04 02:59:53 +00:00
};
es.Tool.tools.italic = {
constructor: es.AnnotationButtonTool,
name: 'italic',
data: { 'type': 'textStyle/italic' }
2011-12-04 02:59:53 +00:00
};
es.Tool.tools.link = {
constructor: es.AnnotationButtonTool,
name: 'link',
data: { 'type': 'link/internal', 'data': { 'title': '' } }
2011-12-04 02:59:53 +00:00
};
2011-12-05 21:10:19 +00:00
/* Inheritance */
2011-12-04 02:59:53 +00:00
2011-12-05 21:10:19 +00:00
es.extendClass( es.AnnotationButtonTool, es.ButtonTool );