mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +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
34 lines
776 B
JavaScript
34 lines
776 B
JavaScript
/*!
|
|
* ObjectOriented UserInterface ListToolGroup class.
|
|
*
|
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* Drop down list layout of tools as labeled icon buttons.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends OO.ui.PopupToolGroup
|
|
*
|
|
* @constructor
|
|
* @param {OO.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Configuration options
|
|
*/
|
|
OO.ui.ListToolGroup = function OoUiListToolGroup( toolbar, config ) {
|
|
// Parent constructor
|
|
OO.ui.PopupToolGroup.call( this, toolbar, config );
|
|
|
|
// Initialization
|
|
this.$.addClass( 'oo-ui-listToolGroup' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
OO.inheritClass( OO.ui.ListToolGroup, OO.ui.PopupToolGroup );
|
|
|
|
/* Static Properties */
|
|
|
|
OO.ui.ListToolGroup.static.accelTooltips = true;
|