2014-02-13 13:29:29 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWCommandHelpDialog class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*global mw */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dialog listing all command keyboard shortcuts.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.CommandHelpDialog
|
|
|
|
*
|
|
|
|
* @constructor
|
2014-03-06 01:07:20 +00:00
|
|
|
* @param {ve.ui.Surface} surface Surface inspector is for
|
2014-02-13 13:29:29 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
2014-03-06 01:07:20 +00:00
|
|
|
ve.ui.MWCommandHelpDialog = function VeUiMWCommandHelpDialog( surface, config ) {
|
2014-02-13 13:29:29 +00:00
|
|
|
// Parent constructor
|
2014-03-06 01:07:20 +00:00
|
|
|
ve.ui.CommandHelpDialog.call( this, surface, config );
|
2014-02-13 13:29:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWCommandHelpDialog, ve.ui.CommandHelpDialog );
|
|
|
|
|
|
|
|
/* Static methods */
|
|
|
|
|
|
|
|
/** */
|
|
|
|
ve.ui.MWCommandHelpDialog.static.getCommandGroups = function () {
|
|
|
|
var commandGroups = ve.ui.CommandHelpDialog.static.getCommandGroups.call( this ),
|
|
|
|
accessKeyPrefix = mw.util.tooltipAccessKeyPrefix.toUpperCase().replace( /-/g, ' + ' ),
|
|
|
|
save = ve.msg( 'accesskey-save' );
|
|
|
|
|
|
|
|
if ( save !== '-' && save !== '' ) {
|
|
|
|
commandGroups.other.commands.push(
|
|
|
|
{
|
2014-03-05 14:08:08 +00:00
|
|
|
'shortcuts': [ accessKeyPrefix + save.toUpperCase() ],
|
2014-02-13 13:29:29 +00:00
|
|
|
'msg': 'visualeditor-savedialog-label-save'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return commandGroups;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.dialogFactory.register( ve.ui.MWCommandHelpDialog );
|