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
|
|
|
|
*/
|
2011-12-05 21:39:54 +00:00
|
|
|
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
|
2011-12-05 21:39:54 +00:00
|
|
|
this.annotation = data;
|
2011-12-06 23:48:47 +00:00
|
|
|
this.active = false;
|
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() {
|
2011-12-06 23:48:47 +00:00
|
|
|
this.toolbar.getSurfaceView().annotate( this.active ? 'clear' : 'set', this.annotation );
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2011-12-06 23:48:47 +00:00
|
|
|
es.AnnotationButtonTool.prototype.updateState = function( annotations, nodes ) {
|
2011-12-07 19:16:40 +00:00
|
|
|
if ( es.DocumentModel.getIndexOfAnnotation( annotations.full, this.annotation, true ) !== -1 ) {
|
2011-12-06 23:48:47 +00:00
|
|
|
this.$.addClass( 'es-toolbarButtonTool-down' );
|
|
|
|
this.active = true;
|
|
|
|
return;
|
2011-12-04 02:59:53 +00:00
|
|
|
}
|
|
|
|
this.$.removeClass( 'es-toolbarButtonTool-down' );
|
2011-12-06 23:48:47 +00:00
|
|
|
this.active = false;
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
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',
|
2011-12-05 21:39:54 +00:00
|
|
|
data: { 'type': 'textStyle/bold' }
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
es.Tool.tools.italic = {
|
|
|
|
constructor: es.AnnotationButtonTool,
|
|
|
|
name: 'italic',
|
2011-12-05 21:39:54 +00:00
|
|
|
data: { 'type': 'textStyle/italic' }
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
es.Tool.tools.link = {
|
|
|
|
constructor: es.AnnotationButtonTool,
|
|
|
|
name: 'link',
|
2011-12-05 21:39:54 +00:00
|
|
|
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 );
|