/** * Creates an ve.ui.AnnotationButtonTool object. * * @class * @constructor * @extends {ve.ui.ButtonTool} * @param {ve.ui.Toolbar} toolbar * @param {String} name * @param {Object} annotation */ ve.ui.AnnotationButtonTool = function( toolbar, name, title, data ) { // Inheritance ve.ui.ButtonTool.call( this, toolbar, name, title ); // Properties this.annotation = data.annotation; this.inspector = data.inspector; this.active = false; }; /* Methods */ ve.ui.AnnotationButtonTool.prototype.onClick = function() { var surfaceView = this.toolbar.getSurfaceView(), surfaceModel = surfaceView.model; if ( this.inspector ) { if( surfaceModel.getSelection() ) { surfaceView.contextView.openInspector( this.inspector ); } else { if ( this.active ) { var documentModel = surfaceModel.getDocument(), selection = surfaceModel.getSelection(), range = documentModel.getAnnotatedRangeFromOffset( selection.from, this.annotation ); surfaceView.showSelection( range ); surfaceView.contextView.openInspector( this.inspector ); } } } else { surfaceModel.annotate( this.active ? 'clear' : 'set', this.annotation ); } }; ve.ui.AnnotationButtonTool.prototype.updateState = function( annotations, nodes ) { if ( ve.dm.Document.annotationsContainAnnotation(annotations, this.annotation) ) { this.$.addClass( 'es-toolbarButtonTool-down' ); this.active = true; return; } this.$.removeClass( 'es-toolbarButtonTool-down' ); this.active = false; }; /* Registration */ ve.ui.Tool.tools.bold = { 'constructor': ve.ui.AnnotationButtonTool, 'name': 'bold', 'title': 'Bold (ctrl/cmd + B)', 'data': { 'annotation': { 'type': 'textStyle/bold' } } }; ve.ui.Tool.tools.italic = { 'constructor': ve.ui.AnnotationButtonTool, 'name': 'italic', 'title': 'Italic (ctrl/cmd + I)', 'data': { 'annotation': { 'type': 'textStyle/italic' } } }; ve.ui.Tool.tools.link = { 'constructor': ve.ui.AnnotationButtonTool, 'name': 'link', 'title': 'Link (ctrl/cmd + K)', 'data': { 'annotation': { 'type': 'link/internal', 'data': { 'title': '' } }, 'inspector': 'link' } }; /* Inheritance */ ve.extendClass( ve.ui.AnnotationButtonTool, ve.ui.ButtonTool );