mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-06 06:29:11 +00:00
8dfbc5baa5
Objectives: * Got rid of mw prefixing in tools, inspectors and dialogs * Simplify tool classes so they can be generically used as items in bars, lists and menus * Add support for a catch-all toolbar group * Simplify tool registration, leaning on tool classes' static name property * Move default commands to command registry * Move default triggers to trigger registry * Get language tool working in standalone Change-Id: Ic97a636f9a193374728629931b6702bee1b3416a
36 lines
771 B
JavaScript
36 lines
771 B
JavaScript
/*!
|
|
* VisualEditor UserInterface BarToolGroup class.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/**
|
|
* UserInterface bar tool group.
|
|
*
|
|
* @class
|
|
* @abstract
|
|
* @extends ve.ui.ToolGroup
|
|
*
|
|
* @constructor
|
|
* @param {ve.ui.Toolbar} toolbar
|
|
* @param {Object} [config] Config options
|
|
*/
|
|
ve.ui.BarToolGroup = function VeUiBarToolGroup( toolbar, config ) {
|
|
// Parent constructor
|
|
ve.ui.ToolGroup.call( this, toolbar, config );
|
|
|
|
// Initialization
|
|
this.$.addClass( 've-ui-barToolGroup' );
|
|
};
|
|
|
|
/* Inheritance */
|
|
|
|
ve.inheritClass( ve.ui.BarToolGroup, ve.ui.ToolGroup );
|
|
|
|
/* Static Properties */
|
|
|
|
ve.ui.BarToolGroup.static.showTitle = true;
|
|
|
|
ve.ui.BarToolGroup.static.showTrigger = true;
|