mediawiki-extensions-Visual.../modules/ve/ui/tools/buttons/ve.ui.ItalicButtonTool.js
Trevor Parscal 294db5e3ef Trigger refactor
Objective: Simplify the registration and use of triggers

Changes:

* Renamed ve.Command to ve.Trigger
* Renamed command demo to trigger demo
* Removed language prefixing of triggers
* Generating trigger tooltips rather than hard-coding them in i18n
* Added documentation to clarify that only 'mac' and 'pc' are supported platforms, and how the default is chosen
* Simplified trigger registry's register command
* Updated trigger registrations

Change-Id: Ibab6ad5b5c86f24707f064967dc2119a81125392
2013-01-28 17:06:13 -08:00

44 lines
1.1 KiB
JavaScript

/*!
* VisualEditor UserInterface ItalicButtonTool class.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* UserInterface italic button tool.
*
* @class
* @extends ve.ui.AnnotationButtonTool
* @constructor
* @param {ve.ui.Toolbar} toolbar
*/
ve.ui.ItalicButtonTool = function VeUiItalicButtonTool( toolbar ) {
// Parent constructor
ve.ui.AnnotationButtonTool.call( this, toolbar );
};
/* Inheritance */
ve.inheritClass( ve.ui.ItalicButtonTool, ve.ui.AnnotationButtonTool );
/* Static Properties */
ve.ui.ItalicButtonTool.static.name = 'italic';
ve.ui.ItalicButtonTool.static.titleMessage = 'visualeditor-annotationbutton-italic-tooltip';
ve.ui.ItalicButtonTool.static.annotation = { 'name': 'textStyle/italic' };
/* Registration */
ve.ui.toolFactory.register( 'italic', ve.ui.ItalicButtonTool );
ve.commandRegistry.register(
'italic', 'annotation', 'toggle', 'textStyle/italic'
);
ve.triggerRegistry.register(
'italic', { 'mac': new ve.Trigger( 'cmd+i' ), 'pc': new ve.Trigger( 'ctrl+i' ) }
);