2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor user interface AnnotationButtonTool class.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2011-12-05 21:10:19 +00:00
|
|
|
/**
|
2012-02-06 23:50:56 +00:00
|
|
|
* Creates an ve.ui.AnnotationButtonTool object.
|
2012-06-20 01:20:28 +00:00
|
|
|
*
|
2011-12-05 21:10:19 +00:00
|
|
|
* @class
|
|
|
|
* @constructor
|
2012-02-06 23:50:56 +00:00
|
|
|
* @extends {ve.ui.ButtonTool}
|
|
|
|
* @param {ve.ui.Toolbar} toolbar
|
2011-12-05 21:10:19 +00:00
|
|
|
* @param {String} name
|
|
|
|
* @param {Object} annotation
|
|
|
|
*/
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.ui.AnnotationButtonTool = function ( toolbar, name, title, data ) {
|
2011-12-05 21:10:19 +00:00
|
|
|
// Inheritance
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.ButtonTool.call( this, toolbar, name, title );
|
2011-12-05 21:10:19 +00:00
|
|
|
|
|
|
|
// Properties
|
2011-12-09 01:28:44 +00:00
|
|
|
this.annotation = data.annotation;
|
|
|
|
this.inspector = data.inspector;
|
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 */
|
|
|
|
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.ui.AnnotationButtonTool.prototype.onClick = function () {
|
2012-06-20 01:20:28 +00:00
|
|
|
var surfaceView = this.toolbar.getSurfaceView(),
|
|
|
|
surfaceModel = surfaceView.model,
|
|
|
|
selection = surfaceModel.getSelection();
|
2011-12-09 01:28:44 +00:00
|
|
|
if ( this.inspector ) {
|
2012-06-21 01:58:49 +00:00
|
|
|
if ( selection && selection.getLength() ) {
|
2012-06-20 01:20:28 +00:00
|
|
|
surfaceView.contextView.openInspector( this.inspector );
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-06-20 01:20:28 +00:00
|
|
|
surfaceModel.annotate( this.active ? 'clear' : 'set', this.annotation );
|
2011-12-09 01:28:44 +00:00
|
|
|
}
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2012-08-07 01:50:44 +00:00
|
|
|
ve.ui.AnnotationButtonTool.prototype.updateState = function ( annotations, nodes ) {
|
2012-06-20 01:20:28 +00:00
|
|
|
var matches = ve.dm.Document.getMatchingAnnotations(
|
|
|
|
annotations, new RegExp( '^' + this.annotation.type + '$' )
|
|
|
|
);
|
|
|
|
if ( ve.isEmptyObject( matches ) ) {
|
2012-08-27 21:34:08 +00:00
|
|
|
this.$.removeClass( 've-ui-toolbarButtonTool-down' );
|
2012-06-20 01:20:28 +00:00
|
|
|
this.active = false;
|
|
|
|
} else {
|
2012-08-27 21:34:08 +00:00
|
|
|
this.$.addClass( 've-ui-toolbarButtonTool-down' );
|
2011-12-06 23:48:47 +00:00
|
|
|
this.active = true;
|
2011-12-04 02:59:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-05 21:10:19 +00:00
|
|
|
/* Registration */
|
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.Tool.tools.bold = {
|
|
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
2011-12-09 01:28:44 +00:00
|
|
|
'name': 'bold',
|
2012-06-20 01:20:28 +00:00
|
|
|
'title': ve.msg( 'visualeditor-annotationbutton-bold-tooltip' ),
|
2011-12-09 01:28:44 +00:00
|
|
|
'data': {
|
|
|
|
'annotation': { 'type': 'textStyle/bold' }
|
|
|
|
}
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.Tool.tools.italic = {
|
|
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
2011-12-09 01:28:44 +00:00
|
|
|
'name': 'italic',
|
2012-06-20 01:20:28 +00:00
|
|
|
'title': ve.msg( 'visualeditor-annotationbutton-italic-tooltip' ),
|
2011-12-09 01:28:44 +00:00
|
|
|
'data': {
|
|
|
|
'annotation': { 'type': 'textStyle/italic' }
|
|
|
|
}
|
2011-12-04 02:59:53 +00:00
|
|
|
};
|
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.ui.Tool.tools.link = {
|
|
|
|
'constructor': ve.ui.AnnotationButtonTool,
|
2011-12-09 01:28:44 +00:00
|
|
|
'name': 'link',
|
2012-06-20 01:20:28 +00:00
|
|
|
'title': ve.msg( 'visualeditor-annotationbutton-link-tooltip' ),
|
2011-12-09 01:28:44 +00:00
|
|
|
'data': {
|
2012-08-09 19:36:09 +00:00
|
|
|
'annotation': { 'type': 'link/WikiLink', 'data': { 'title': '' } },
|
2011-12-09 01:28:44 +00:00
|
|
|
'inspector': 'link'
|
|
|
|
}
|
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
|
|
|
|
2012-02-06 23:50:56 +00:00
|
|
|
ve.extendClass( ve.ui.AnnotationButtonTool, ve.ui.ButtonTool );
|