2013-10-09 20:09:59 +00:00
|
|
|
/*!
|
|
|
|
* ObjectOriented UserInterface IconButtonWidget class.
|
|
|
|
*
|
|
|
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an OO.ui.IconButtonWidget object.
|
|
|
|
*
|
|
|
|
* @class
|
|
|
|
* @extends OO.ui.ButtonWidget
|
|
|
|
* @mixins OO.ui.IconedElement
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
OO.ui.IconButtonWidget = function OoUiIconButtonWidget( config ) {
|
|
|
|
// Parent constructor
|
|
|
|
OO.ui.ButtonWidget.call( this, config );
|
|
|
|
|
|
|
|
// Mixin constructors
|
2013-11-01 19:45:59 +00:00
|
|
|
OO.ui.IconedElement.call( this, this.$( '<span>' ), config );
|
2013-10-09 20:09:59 +00:00
|
|
|
|
|
|
|
// Initialization
|
|
|
|
this.$button.prepend( this.$icon );
|
2013-11-01 19:45:59 +00:00
|
|
|
this.$element.addClass( 'oo-ui-iconButtonWidget' );
|
2013-10-09 20:09:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( OO.ui.IconButtonWidget, OO.ui.ButtonWidget );
|
|
|
|
|
|
|
|
OO.mixinClass( OO.ui.IconButtonWidget, OO.ui.IconedElement );
|
|
|
|
|
|
|
|
/* Static Properties */
|
|
|
|
|
|
|
|
OO.ui.IconButtonWidget.static.emptyHtml = '';
|