2013-07-08 21:20:31 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface LanguageButtonTool class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UserInterface language button tool.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.InspectorButtonTool
|
|
|
|
* @constructor
|
2013-08-01 22:01:43 +00:00
|
|
|
* @param {ve.ui.SurfaceToolbar} toolbar
|
2013-07-08 21:20:31 +00:00
|
|
|
* @param {Object} [config] Config options
|
|
|
|
*/
|
|
|
|
ve.ui.LanguageButtonTool = function VeUiLanguageButtonTool( toolbar, config ) {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.InspectorButtonTool.call( this, toolbar, config );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
ve.inheritClass( ve.ui.LanguageButtonTool, ve.ui.InspectorButtonTool );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.ui.LanguageButtonTool.static.name = 'language';
|
|
|
|
|
|
|
|
ve.ui.LanguageButtonTool.static.icon = 'language';
|
|
|
|
|
|
|
|
ve.ui.LanguageButtonTool.static.titleMessage = 'visualeditor-annotationbutton-language-tooltip';
|
|
|
|
|
|
|
|
ve.ui.LanguageButtonTool.static.inspector = 'language';
|
|
|
|
|
|
|
|
ve.ui.LanguageButtonTool.static.modelClasses = [ ve.dm.LanguageAnnotation ];
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.toolFactory.register( 'language', ve.ui.LanguageButtonTool );
|
|
|
|
|
|
|
|
ve.ui.commandRegistry.register( 'language', 'inspector', 'open', 'language' );
|