mediawiki-extensions-Visual.../modules/ve/ui/widgets/ve.ui.ButtonWidget.js
Trevor Parscal 482db3763c Removed static "overrides", which were only setting defaults
The default widget element type is already 'div', no need to override that.

Change-Id: Ief6ee9a7a2e2384ea26276483a5d8e33ab70dacf
2013-03-26 16:51:35 -07:00

63 lines
1.3 KiB
JavaScript

/*!
* VisualEditor UserInterface ButtonWidget class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* Creates an ve.ui.ButtonWidget object.
*
* @class
* @extends ve.ui.Widget
* @mixins ve.ui.FlaggableWidget
* @mixins ve.ui.LabeledWidget
*
* @constructor
* @param {Object} [config] Config options
*/
ve.ui.ButtonWidget = function VeUiButtonWidget( config ) {
// Parent constructor
ve.ui.Widget.call( this, config );
// Mixin constructors
ve.ui.FlaggableWidget.call( this, config );
ve.ui.LabeledWidget.call( this, this.$$( '<span>' ), config );
// Events
this.$.on( 'click', ve.bind( this.onClick, this ) );
// Initialization
this.$.addClass( 've-ui-buttonWidget' ).append( this.$label );
};
/* Inheritance */
ve.inheritClass( ve.ui.ButtonWidget, ve.ui.Widget );
ve.mixinClass( ve.ui.ButtonWidget, ve.ui.FlaggableWidget );
ve.mixinClass( ve.ui.ButtonWidget, ve.ui.LabeledWidget );
/* Events */
/**
* @event click
*/
/* Methods */
/**
* Handles mouse click events.
*
* @method
* @param {jQuery.Event} e Mouse click event
* @emits click
*/
ve.ui.ButtonWidget.prototype.onClick = function () {
if ( !this.disabled ) {
this.emit( 'click' );
}
return false;
};