mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-17 03:18:48 +00:00
638e4f65b6
This introduces a small reorginization of how commands are registered so that they are associated with their corresponding symbolic names. This change is mainly to aid with event tracking, but it might be generally useful for other things as well. Change-Id: I2ccf4522f786a54c1f5395008b7b0333a1fa6072
132 lines
5.5 KiB
JavaScript
132 lines
5.5 KiB
JavaScript
/*!
|
|
* VisualEditor MediaWiki UserInterface format tool classes.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 1 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading1FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading1FormatTool = function VeUiMWHeading1FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading1FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading1FormatTool, ve.ui.Heading1FormatTool );
|
|
ve.ui.MWHeading1FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading1';
|
|
ve.ui.MWHeading1FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 1 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading1FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading1', 'format', 'convert', 'mwHeading', { 'level': 1 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 2 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading2FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading2FormatTool = function VeUiMWHeading2FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading2FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading2FormatTool, ve.ui.Heading2FormatTool );
|
|
ve.ui.MWHeading2FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading2';
|
|
ve.ui.MWHeading2FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 2 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading2FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading2', 'format', 'convert', 'mwHeading', { 'level': 2 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 3 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading3FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading3FormatTool = function VeUiMWHeading3FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading3FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading3FormatTool, ve.ui.Heading3FormatTool );
|
|
ve.ui.MWHeading3FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading3';
|
|
ve.ui.MWHeading3FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 3 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading3FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading3', 'format', 'convert', 'mwHeading', { 'level': 3 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 4 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading4FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading4FormatTool = function VeUiMWHeading4FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading4FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading4FormatTool, ve.ui.Heading4FormatTool );
|
|
ve.ui.MWHeading4FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading4';
|
|
ve.ui.MWHeading4FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 4 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading4FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading4', 'format', 'convert', 'mwHeading', { 'level': 4 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 5 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading5FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading5FormatTool = function VeUiMWHeading5FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading5FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading5FormatTool, ve.ui.Heading5FormatTool );
|
|
ve.ui.MWHeading5FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading5';
|
|
ve.ui.MWHeading5FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 5 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading5FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading5', 'format', 'convert', 'mwHeading', { 'level': 5 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface heading 6 tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.Heading6FormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWHeading6FormatTool = function VeUiMWHeading6FormatTool( toolGroup, config ) {
|
|
ve.ui.Heading6FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWHeading6FormatTool, ve.ui.Heading6FormatTool );
|
|
ve.ui.MWHeading6FormatTool.static.titleMessage = 'visualeditor-formatdropdown-format-mw-heading6';
|
|
ve.ui.MWHeading6FormatTool.static.format = { 'type': 'mwHeading', 'attributes': { 'level': 6 } };
|
|
ve.ui.toolFactory.register( ve.ui.MWHeading6FormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'heading6', 'format', 'convert', 'mwHeading', { 'level': 6 } ) );
|
|
|
|
/**
|
|
* MediaWiki UserInterface preformatted tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.PreformattedFormatTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWPreformattedFormatTool = function VeUiMWPreformattedFormatTool( toolGroup, config ) {
|
|
ve.ui.FormatTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWPreformattedFormatTool, ve.ui.PreformattedFormatTool );
|
|
ve.ui.MWPreformattedFormatTool.static.format = { 'type': 'mwPreformatted' };
|
|
ve.ui.toolFactory.register( ve.ui.MWPreformattedFormatTool );
|
|
ve.ui.commandRegistry.register( new ve.ui.Command( 'preformatted', 'format', 'convert', 'mwPreformatted' ) );
|