mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
6774cd74f3
Changes: * Pass toolGroup into tools instead of toolbar * Split tool labels into title and accel * Make toolbars provide accelerator labels * Remove getLabelText method since it's not being used and is likely not useful * Make tools update their own labels * Only show accelerator information for triggers that are active in the surface * Make surface toolbars listen to commands being added and update tools accordingly * Introduce command object to encapsulate command info Change-Id: Ieac4bfa63b63ac0a9dee154af3007a33b4d447ff
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
/*!
|
|
* VisualEditor Experimental MediaWiki UserInterface alien extension tool class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* MediaWiki UserInterface alien extension tool.
|
|
*
|
|
* @class
|
|
* @extends ve.ui.InspectorTool
|
|
* @constructor
|
|
* @param {OO.ui.ToolGroup} toolGroup
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
ve.ui.MWAlienExtensionInspectorTool = function VeUiMWAlienExtensionInspectorTool( toolGroup, config ) {
|
|
ve.ui.InspectorTool.call( this, toolGroup, config );
|
|
};
|
|
OO.inheritClass( ve.ui.MWAlienExtensionInspectorTool, ve.ui.InspectorTool );
|
|
ve.ui.MWAlienExtensionInspectorTool.static.name = 'alienExtension';
|
|
ve.ui.MWAlienExtensionInspectorTool.static.group = 'object';
|
|
ve.ui.MWAlienExtensionInspectorTool.static.icon = 'alienextension';
|
|
ve.ui.MWAlienExtensionInspectorTool.static.titleMessage =
|
|
'visualeditor-mwalienextensioninspector-title';
|
|
ve.ui.MWAlienExtensionInspectorTool.static.inspector = 'alienExtension';
|
|
ve.ui.MWAlienExtensionInspectorTool.static.modelClasses = [ ve.dm.MWAlienExtensionNode ];
|
|
ve.ui.MWAlienExtensionInspectorTool.static.autoAdd = false;
|
|
ve.ui.toolFactory.register( ve.ui.MWAlienExtensionInspectorTool );
|