2017-03-02 21:20:35 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MWPreContextItem class.
|
|
|
|
*
|
2018-01-03 00:54:47 +00:00
|
|
|
* @copyright 2011-2018 VisualEditor Team and others; see http://ve.mit-license.org
|
2017-03-02 21:20:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Context item for a MWPre.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.LinearContextItem
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {ve.ui.Context} context Context item is in
|
|
|
|
* @param {ve.dm.Model} model Model item is related to
|
|
|
|
* @param {Object} config Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWPreContextItem = function VeUiMWPreContextItem() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWPreContextItem.super.apply( this, arguments );
|
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$element.addClass( 've-ui-mwPreContextItem' );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWPreContextItem, ve.ui.LinearContextItem );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
ve.ui.MWPreContextItem.static.name = 'mwPre';
|
|
|
|
|
|
|
|
ve.ui.MWPreContextItem.static.icon = 'markup';
|
|
|
|
|
|
|
|
ve.ui.MWPreContextItem.static.label = OO.ui.deferMsg( 'visualeditor-mwpredialog-title' );
|
|
|
|
|
|
|
|
ve.ui.MWPreContextItem.static.modelClasses = [ ve.dm.MWPreNode ];
|
|
|
|
|
|
|
|
ve.ui.MWPreContextItem.static.commandName = 'mwPre';
|
|
|
|
|
|
|
|
/* Registration */
|
|
|
|
|
|
|
|
ve.ui.contextItemFactory.register( ve.ui.MWPreContextItem );
|
|
|
|
|
|
|
|
ve.ui.commandRegistry.register(
|
|
|
|
new ve.ui.Command(
|
|
|
|
'mwPre', 'window', 'open',
|
|
|
|
{ args: [ 'mwPre' ], supportedSelections: [ 'linear' ] }
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
ve.ui.sequenceRegistry.register(
|
|
|
|
new ve.ui.Sequence( 'wikitextPre', 'mwPre', '<pre', 4 )
|
|
|
|
);
|