2013-06-27 23:17:59 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MWReferenceResultWidget class.
|
|
|
|
*
|
2014-01-05 12:05:05 +00:00
|
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
2013-06-27 23:17:59 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an ve.ui.MWReferenceResultWidget object.
|
|
|
|
*
|
|
|
|
* @class
|
2013-10-09 20:09:59 +00:00
|
|
|
* @extends OO.ui.OptionWidget
|
2013-06-27 23:17:59 +00:00
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Mixed} data Item data
|
2013-09-25 10:21:09 +00:00
|
|
|
* @param {Object} [config] Configuration options
|
2013-06-27 23:17:59 +00:00
|
|
|
* @cfg {boolean} [divider] Section divider item, not highlightable or selectable
|
|
|
|
*/
|
|
|
|
ve.ui.MWReferenceResultWidget = function VeUiMWReferenceResultWidget( data, config ) {
|
|
|
|
// Configuration intialization
|
|
|
|
config = config || {};
|
|
|
|
|
|
|
|
// Parent constructor
|
2013-10-09 20:09:59 +00:00
|
|
|
OO.ui.OptionWidget.call( this, data, config );
|
2013-06-27 23:17:59 +00:00
|
|
|
|
|
|
|
// Properties
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$shield = this.$( '<div>' );
|
2013-06-27 23:17:59 +00:00
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$shield.addClass( 've-ui-mwReferenceResultWidget-shield' );
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element
|
2013-06-27 23:17:59 +00:00
|
|
|
.addClass( 've-ui-mwReferenceResultWidget' )
|
|
|
|
.append( this.$shield );
|
|
|
|
if ( config.divider ) {
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element.addClass( 've-ui-mwReferenceResultWidget-divider' );
|
2013-06-27 23:17:59 +00:00
|
|
|
this.setDisabled( true );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
2013-10-09 20:09:59 +00:00
|
|
|
OO.inheritClass( ve.ui.MWReferenceResultWidget, OO.ui.OptionWidget );
|