Upgrade to ExtJS 3.2.2 - Released 06/02/2010
[extjs.git] / src / widgets / Button.js
1 /*!
2  * Ext JS Library 3.2.2
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.Button
9  * @extends Ext.BoxComponent
10  * Simple Button class
11  * @cfg {String} text The button text to be used as innerHTML (html tags are accepted)
12  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
13  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:'x-btn-text-icon')
14  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event).
15  * The handler is passed the following parameters:<div class="mdetail-params"><ul>
16  * <li><code>b</code> : Button<div class="sub-desc">This Button.</div></li>
17  * <li><code>e</code> : EventObject<div class="sub-desc">The click event.</div></li>
18  * </ul></div>
19  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width).
20  * See also {@link Ext.Panel}.<tt>{@link Ext.Panel#minButtonWidth minButtonWidth}</tt>.
21  * @cfg {String/Object} tooltip The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or QuickTips config object
22  * @cfg {Boolean} hidden True to start hidden (defaults to false)
23  * @cfg {Boolean} disabled True to start disabled (defaults to false)
24  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
25  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed)
26  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
27  * a {@link Ext.util.ClickRepeater ClickRepeater} config object (defaults to false).
28  * @constructor
29  * Create a new button
30  * @param {Object} config The config object
31  * @xtype button
32  */
33 Ext.Button = Ext.extend(Ext.BoxComponent, {
34     /**
35      * Read-only. True if this button is hidden
36      * @type Boolean
37      */
38     hidden : false,
39     /**
40      * Read-only. True if this button is disabled
41      * @type Boolean
42      */
43     disabled : false,
44     /**
45      * Read-only. True if this button is pressed (only if enableToggle = true)
46      * @type Boolean
47      */
48     pressed : false,
49
50     /**
51      * @cfg {Number} tabIndex Set a DOM tabIndex for this button (defaults to undefined)
52      */
53
54     /**
55      * @cfg {Boolean} allowDepress
56      * False to not allow a pressed Button to be depressed (defaults to undefined). Only valid when {@link #enableToggle} is true.
57      */
58
59     /**
60      * @cfg {Boolean} enableToggle
61      * True to enable pressed/not pressed toggling (defaults to false)
62      */
63     enableToggle : false,
64     /**
65      * @cfg {Function} toggleHandler
66      * Function called when a Button with {@link #enableToggle} set to true is clicked. Two arguments are passed:<ul class="mdetail-params">
67      * <li><b>button</b> : Ext.Button<div class="sub-desc">this Button object</div></li>
68      * <li><b>state</b> : Boolean<div class="sub-desc">The next state of the Button, true means pressed.</div></li>
69      * </ul>
70      */
71     /**
72      * @cfg {Mixed} menu
73      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
74      */
75     /**
76      * @cfg {String} menuAlign
77      * The position to align the menu to (see {@link Ext.Element#alignTo} for more details, defaults to 'tl-bl?').
78      */
79     menuAlign : 'tl-bl?',
80
81     /**
82      * @cfg {String} overflowText If used in a {@link Ext.Toolbar Toolbar}, the
83      * text to be used if this item is shown in the overflow menu. See also
84      * {@link Ext.Toolbar.Item}.<code>{@link Ext.Toolbar.Item#overflowText overflowText}</code>.
85      */
86     /**
87      * @cfg {String} iconCls
88      * A css class which sets a background image to be used as the icon for this button
89      */
90     /**
91      * @cfg {String} type
92      * submit, reset or button - defaults to 'button'
93      */
94     type : 'button',
95
96     // private
97     menuClassTarget : 'tr:nth(2)',
98
99     /**
100      * @cfg {String} clickEvent
101      * The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu).
102      * Defaults to <tt>'click'</tt>.
103      */
104     clickEvent : 'click',
105
106     /**
107      * @cfg {Boolean} handleMouseEvents
108      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
109      */
110     handleMouseEvents : true,
111
112     /**
113      * @cfg {String} tooltipType
114      * The type of tooltip to use. Either 'qtip' (default) for QuickTips or 'title' for title attribute.
115      */
116     tooltipType : 'qtip',
117
118     /**
119      * @cfg {String} buttonSelector
120      * <p>(Optional) A {@link Ext.DomQuery DomQuery} selector which is used to extract the active, clickable element from the
121      * DOM structure created.</p>
122      * <p>When a custom {@link #template} is used, you  must ensure that this selector results in the selection of
123      * a focussable element.</p>
124      * <p>Defaults to <b><tt>'button:first-child'</tt></b>.</p>
125      */
126     buttonSelector : 'button:first-child',
127
128     /**
129      * @cfg {String} scale
130      * <p>(Optional) The size of the Button. Three values are allowed:</p>
131      * <ul class="mdetail-params">
132      * <li>'small'<div class="sub-desc">Results in the button element being 16px high.</div></li>
133      * <li>'medium'<div class="sub-desc">Results in the button element being 24px high.</div></li>
134      * <li>'large'<div class="sub-desc">Results in the button element being 32px high.</div></li>
135      * </ul>
136      * <p>Defaults to <b><tt>'small'</tt></b>.</p>
137      */
138     scale : 'small',
139
140     /**
141      * @cfg {Object} scope The scope (<tt><b>this</b></tt> reference) in which the
142      * <code>{@link #handler}</code> and <code>{@link #toggleHandler}</code> is
143      * executed. Defaults to this Button.
144      */
145
146     /**
147      * @cfg {String} iconAlign
148      * <p>(Optional) The side of the Button box to render the icon. Four values are allowed:</p>
149      * <ul class="mdetail-params">
150      * <li>'top'<div class="sub-desc"></div></li>
151      * <li>'right'<div class="sub-desc"></div></li>
152      * <li>'bottom'<div class="sub-desc"></div></li>
153      * <li>'left'<div class="sub-desc"></div></li>
154      * </ul>
155      * <p>Defaults to <b><tt>'left'</tt></b>.</p>
156      */
157     iconAlign : 'left',
158
159     /**
160      * @cfg {String} arrowAlign
161      * <p>(Optional) The side of the Button box to render the arrow if the button has an associated {@link #menu}.
162      * Two values are allowed:</p>
163      * <ul class="mdetail-params">
164      * <li>'right'<div class="sub-desc"></div></li>
165      * <li>'bottom'<div class="sub-desc"></div></li>
166      * </ul>
167      * <p>Defaults to <b><tt>'right'</tt></b>.</p>
168      */
169     arrowAlign : 'right',
170
171     /**
172      * @cfg {Ext.Template} template (Optional)
173      * <p>A {@link Ext.Template Template} used to create the Button's DOM structure.</p>
174      * Instances, or subclasses which need a different DOM structure may provide a different
175      * template layout in conjunction with an implementation of {@link #getTemplateArgs}.
176      * @type Ext.Template
177      * @property template
178      */
179     /**
180      * @cfg {String} cls
181      * A CSS class string to apply to the button's main element.
182      */
183     /**
184      * @property menu
185      * @type Menu
186      * The {@link Ext.menu.Menu Menu} object associated with this Button when configured with the {@link #menu} config option.
187      */
188     /**
189      * @cfg {Boolean} autoWidth
190      * By default, if a width is not specified the button will attempt to stretch horizontally to fit its content.
191      * If the button is being managed by a width sizing layout (hbox, fit, anchor), set this to false to prevent
192      * the button from doing this automatic sizing.
193      * Defaults to <tt>undefined</tt>.
194      */
195
196     initComponent : function(){
197         Ext.Button.superclass.initComponent.call(this);
198
199         this.addEvents(
200             /**
201              * @event click
202              * Fires when this button is clicked
203              * @param {Button} this
204              * @param {EventObject} e The click event
205              */
206             'click',
207             /**
208              * @event toggle
209              * Fires when the 'pressed' state of this button changes (only if enableToggle = true)
210              * @param {Button} this
211              * @param {Boolean} pressed
212              */
213             'toggle',
214             /**
215              * @event mouseover
216              * Fires when the mouse hovers over the button
217              * @param {Button} this
218              * @param {Event} e The event object
219              */
220             'mouseover',
221             /**
222              * @event mouseout
223              * Fires when the mouse exits the button
224              * @param {Button} this
225              * @param {Event} e The event object
226              */
227             'mouseout',
228             /**
229              * @event menushow
230              * If this button has a menu, this event fires when it is shown
231              * @param {Button} this
232              * @param {Menu} menu
233              */
234             'menushow',
235             /**
236              * @event menuhide
237              * If this button has a menu, this event fires when it is hidden
238              * @param {Button} this
239              * @param {Menu} menu
240              */
241             'menuhide',
242             /**
243              * @event menutriggerover
244              * If this button has a menu, this event fires when the mouse enters the menu triggering element
245              * @param {Button} this
246              * @param {Menu} menu
247              * @param {EventObject} e
248              */
249             'menutriggerover',
250             /**
251              * @event menutriggerout
252              * If this button has a menu, this event fires when the mouse leaves the menu triggering element
253              * @param {Button} this
254              * @param {Menu} menu
255              * @param {EventObject} e
256              */
257             'menutriggerout'
258         );
259         if(this.menu){
260             this.menu = Ext.menu.MenuMgr.get(this.menu);
261         }
262         if(Ext.isString(this.toggleGroup)){
263             this.enableToggle = true;
264         }
265     },
266
267 /**
268   * <p>This method returns an Array which provides substitution parameters for the {@link #template Template} used
269   * to create this Button's DOM structure.</p>
270   * <p>Instances or subclasses which use a different Template to create a different DOM structure may need to provide their
271   * own implementation of this method.</p>
272   * <p>The default implementation which provides data for the default {@link #template} returns an Array containing the
273   * following items:</p><div class="mdetail-params"><ul>
274   * <li>The &lt;button&gt;'s {@link #type}</li>
275   * <li>A CSS class name applied to the Button's main &lt;tbody&gt; element which determines the button's scale and icon alignment.</li>
276   * <li>A CSS class to determine the presence and position of an arrow icon. (<code>'x-btn-arrow'</code> or <code>'x-btn-arrow-bottom'</code> or <code>''</code>)</li>
277   * <li>The {@link #cls} CSS class name applied to the button's wrapping &lt;table&gt; element.</li>
278   * <li>The Component id which is applied to the button's wrapping &lt;table&gt; element.</li>
279   * </ul></div>
280   * @return {Array} Substitution data for a Template.
281  */
282     getTemplateArgs : function(){
283         return [this.type, 'x-btn-' + this.scale + ' x-btn-icon-' + this.scale + '-' + this.iconAlign, this.getMenuClass(), this.cls, this.id];
284     },
285
286     // private
287     setButtonClass : function(){
288         if(this.useSetClass){
289             if(!Ext.isEmpty(this.oldCls)){
290                 this.el.removeClass([this.oldCls, 'x-btn-pressed']);
291             }
292             this.oldCls = (this.iconCls || this.icon) ? (this.text ? 'x-btn-text-icon' : 'x-btn-icon') : 'x-btn-noicon';
293             this.el.addClass([this.oldCls, this.pressed ? 'x-btn-pressed' : null]);
294         }
295     },
296
297     // protected
298     getMenuClass : function(){
299         return this.menu ? (this.arrowAlign != 'bottom' ? 'x-btn-arrow' : 'x-btn-arrow-bottom') : '';
300     },
301
302     // private
303     onRender : function(ct, position){
304         if(!this.template){
305             if(!Ext.Button.buttonTemplate){
306                 // hideous table template
307                 Ext.Button.buttonTemplate = new Ext.Template(
308                     '<table id="{4}" cellspacing="0" class="x-btn {3}"><tbody class="{1}">',
309                     '<tr><td class="x-btn-tl"><i>&#160;</i></td><td class="x-btn-tc"></td><td class="x-btn-tr"><i>&#160;</i></td></tr>',
310                     '<tr><td class="x-btn-ml"><i>&#160;</i></td><td class="x-btn-mc"><em class="{2}" unselectable="on"><button type="{0}"></button></em></td><td class="x-btn-mr"><i>&#160;</i></td></tr>',
311                     '<tr><td class="x-btn-bl"><i>&#160;</i></td><td class="x-btn-bc"></td><td class="x-btn-br"><i>&#160;</i></td></tr>',
312                     '</tbody></table>');
313                 Ext.Button.buttonTemplate.compile();
314             }
315             this.template = Ext.Button.buttonTemplate;
316         }
317
318         var btn, targs = this.getTemplateArgs();
319
320         if(position){
321             btn = this.template.insertBefore(position, targs, true);
322         }else{
323             btn = this.template.append(ct, targs, true);
324         }
325         /**
326          * An {@link Ext.Element Element} encapsulating the Button's clickable element. By default,
327          * this references a <tt>&lt;button&gt;</tt> element. Read only.
328          * @type Ext.Element
329          * @property btnEl
330          */
331         this.btnEl = btn.child(this.buttonSelector);
332         this.mon(this.btnEl, {
333             scope: this,
334             focus: this.onFocus,
335             blur: this.onBlur
336         });
337
338         this.initButtonEl(btn, this.btnEl);
339
340         Ext.ButtonToggleMgr.register(this);
341     },
342
343     // private
344     initButtonEl : function(btn, btnEl){
345         this.el = btn;
346         this.setIcon(this.icon);
347         this.setText(this.text);
348         this.setIconClass(this.iconCls);
349         if(Ext.isDefined(this.tabIndex)){
350             btnEl.dom.tabIndex = this.tabIndex;
351         }
352         if(this.tooltip){
353             this.setTooltip(this.tooltip, true);
354         }
355
356         if(this.handleMouseEvents){
357             this.mon(btn, {
358                 scope: this,
359                 mouseover: this.onMouseOver,
360                 mousedown: this.onMouseDown
361             });
362
363             // new functionality for monitoring on the document level
364             //this.mon(btn, 'mouseout', this.onMouseOut, this);
365         }
366
367         if(this.menu){
368             this.mon(this.menu, {
369                 scope: this,
370                 show: this.onMenuShow,
371                 hide: this.onMenuHide
372             });
373         }
374
375         if(this.repeat){
376             var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
377             this.mon(repeater, 'click', this.onRepeatClick, this);
378         }else{
379             this.mon(btn, this.clickEvent, this.onClick, this);
380         }
381     },
382
383     // private
384     afterRender : function(){
385         Ext.Button.superclass.afterRender.call(this);
386         this.useSetClass = true;
387         this.setButtonClass();
388         this.doc = Ext.getDoc();
389         this.doAutoWidth();
390     },
391
392     /**
393      * Sets the CSS class that provides a background image to use as the button's icon.  This method also changes
394      * the value of the {@link iconCls} config internally.
395      * @param {String} cls The CSS class providing the icon image
396      * @return {Ext.Button} this
397      */
398     setIconClass : function(cls){
399         this.iconCls = cls;
400         if(this.el){
401             this.btnEl.dom.className = '';
402             this.btnEl.addClass(['x-btn-text', cls || '']);
403             this.setButtonClass();
404         }
405         return this;
406     },
407
408     /**
409      * Sets the tooltip for this Button.
410      * @param {String/Object} tooltip. This may be:<div class="mdesc-details"><ul>
411      * <li><b>String</b> : A string to be used as innerHTML (html tags are accepted) to show in a tooltip</li>
412      * <li><b>Object</b> : A configuration object for {@link Ext.QuickTips#register}.</li>
413      * </ul></div>
414      * @return {Ext.Button} this
415      */
416     setTooltip : function(tooltip, /* private */ initial){
417         if(this.rendered){
418             if(!initial){
419                 this.clearTip();
420             }
421             if(Ext.isObject(tooltip)){
422                 Ext.QuickTips.register(Ext.apply({
423                       target: this.btnEl.id
424                 }, tooltip));
425                 this.tooltip = tooltip;
426             }else{
427                 this.btnEl.dom[this.tooltipType] = tooltip;
428             }
429         }else{
430             this.tooltip = tooltip;
431         }
432         return this;
433     },
434
435     // private
436     clearTip : function(){
437         if(Ext.isObject(this.tooltip)){
438             Ext.QuickTips.unregister(this.btnEl);
439         }
440     },
441
442     // private
443     beforeDestroy : function(){
444         if(this.rendered){
445             this.clearTip();
446         }
447         if(this.menu && this.destroyMenu !== false) {
448             Ext.destroy(this.btnEl, this.menu);
449         }
450         Ext.destroy(this.repeater);
451     },
452
453     // private
454     onDestroy : function(){
455         if(this.rendered){
456             this.doc.un('mouseover', this.monitorMouseOver, this);
457             this.doc.un('mouseup', this.onMouseUp, this);
458             delete this.doc;
459             delete this.btnEl;
460             Ext.ButtonToggleMgr.unregister(this);
461         }
462         Ext.Button.superclass.onDestroy.call(this);
463     },
464
465     // private
466     doAutoWidth : function(){
467         if(this.autoWidth !== false && this.el && this.text && this.width === undefined){
468             this.el.setWidth('auto');
469             if(Ext.isIE7 && Ext.isStrict){
470                 var ib = this.btnEl;
471                 if(ib && ib.getWidth() > 20){
472                     ib.clip();
473                     ib.setWidth(Ext.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
474                 }
475             }
476             if(this.minWidth){
477                 if(this.el.getWidth() < this.minWidth){
478                     this.el.setWidth(this.minWidth);
479                 }
480             }
481         }
482     },
483
484     /**
485      * Assigns this Button's click handler
486      * @param {Function} handler The function to call when the button is clicked
487      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the handler function is executed.
488      * Defaults to this Button.
489      * @return {Ext.Button} this
490      */
491     setHandler : function(handler, scope){
492         this.handler = handler;
493         this.scope = scope;
494         return this;
495     },
496
497     /**
498      * Sets this Button's text
499      * @param {String} text The button text
500      * @return {Ext.Button} this
501      */
502     setText : function(text){
503         this.text = text;
504         if(this.el){
505             this.btnEl.update(text || '&#160;');
506             this.setButtonClass();
507         }
508         this.doAutoWidth();
509         return this;
510     },
511
512     /**
513      * Sets the background image (inline style) of the button.  This method also changes
514      * the value of the {@link icon} config internally.
515      * @param {String} icon The path to an image to display in the button
516      * @return {Ext.Button} this
517      */
518     setIcon : function(icon){
519         this.icon = icon;
520         if(this.el){
521             this.btnEl.setStyle('background-image', icon ? 'url(' + icon + ')' : '');
522             this.setButtonClass();
523         }
524         return this;
525     },
526
527     /**
528      * Gets the text for this Button
529      * @return {String} The button text
530      */
531     getText : function(){
532         return this.text;
533     },
534
535     /**
536      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
537      * @param {Boolean} state (optional) Force a particular state
538      * @param {Boolean} supressEvent (optional) True to stop events being fired when calling this method.
539      * @return {Ext.Button} this
540      */
541     toggle : function(state, suppressEvent){
542         state = state === undefined ? !this.pressed : !!state;
543         if(state != this.pressed){
544             if(this.rendered){
545                 this.el[state ? 'addClass' : 'removeClass']('x-btn-pressed');
546             }
547             this.pressed = state;
548             if(!suppressEvent){
549                 this.fireEvent('toggle', this, state);
550                 if(this.toggleHandler){
551                     this.toggleHandler.call(this.scope || this, this, state);
552                 }
553             }
554         }
555         return this;
556     },
557
558     // private
559     onDisable : function(){
560         this.onDisableChange(true);
561     },
562
563     // private
564     onEnable : function(){
565         this.onDisableChange(false);
566     },
567
568     onDisableChange : function(disabled){
569         if(this.el){
570             if(!Ext.isIE6 || !this.text){
571                 this.el[disabled ? 'addClass' : 'removeClass'](this.disabledClass);
572             }
573             this.el.dom.disabled = disabled;
574         }
575         this.disabled = disabled;
576     },
577
578     /**
579      * Show this button's menu (if it has one)
580      */
581     showMenu : function(){
582         if(this.rendered && this.menu){
583             if(this.tooltip){
584                 Ext.QuickTips.getQuickTip().cancelShow(this.btnEl);
585             }
586             if(this.menu.isVisible()){
587                 this.menu.hide();
588             }
589             this.menu.ownerCt = this;
590             this.menu.show(this.el, this.menuAlign);
591         }
592         return this;
593     },
594
595     /**
596      * Hide this button's menu (if it has one)
597      */
598     hideMenu : function(){
599         if(this.hasVisibleMenu()){
600             this.menu.hide();
601         }
602         return this;
603     },
604
605     /**
606      * Returns true if the button has a menu and it is visible
607      * @return {Boolean}
608      */
609     hasVisibleMenu : function(){
610         return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
611     },
612     
613     // private
614     onRepeatClick : function(repeat, e){
615         this.onClick(e);
616     },
617
618     // private
619     onClick : function(e){
620         if(e){
621             e.preventDefault();
622         }
623         if(e.button !== 0){
624             return;
625         }
626         if(!this.disabled){
627             if(this.enableToggle && (this.allowDepress !== false || !this.pressed)){
628                 this.toggle();
629             }
630             if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
631                 this.showMenu();
632             }
633             this.fireEvent('click', this, e);
634             if(this.handler){
635                 //this.el.removeClass('x-btn-over');
636                 this.handler.call(this.scope || this, this, e);
637             }
638         }
639     },
640
641     // private
642     isMenuTriggerOver : function(e, internal){
643         return this.menu && !internal;
644     },
645
646     // private
647     isMenuTriggerOut : function(e, internal){
648         return this.menu && !internal;
649     },
650
651     // private
652     onMouseOver : function(e){
653         if(!this.disabled){
654             var internal = e.within(this.el,  true);
655             if(!internal){
656                 this.el.addClass('x-btn-over');
657                 if(!this.monitoringMouseOver){
658                     this.doc.on('mouseover', this.monitorMouseOver, this);
659                     this.monitoringMouseOver = true;
660                 }
661                 this.fireEvent('mouseover', this, e);
662             }
663             if(this.isMenuTriggerOver(e, internal)){
664                 this.fireEvent('menutriggerover', this, this.menu, e);
665             }
666         }
667     },
668
669     // private
670     monitorMouseOver : function(e){
671         if(e.target != this.el.dom && !e.within(this.el)){
672             if(this.monitoringMouseOver){
673                 this.doc.un('mouseover', this.monitorMouseOver, this);
674                 this.monitoringMouseOver = false;
675             }
676             this.onMouseOut(e);
677         }
678     },
679
680     // private
681     onMouseOut : function(e){
682         var internal = e.within(this.el) && e.target != this.el.dom;
683         this.el.removeClass('x-btn-over');
684         this.fireEvent('mouseout', this, e);
685         if(this.isMenuTriggerOut(e, internal)){
686             this.fireEvent('menutriggerout', this, this.menu, e);
687         }
688     },
689
690     focus : function() {
691         this.btnEl.focus();
692     },
693
694     blur : function() {
695         this.btnEl.blur();
696     },
697
698     // private
699     onFocus : function(e){
700         if(!this.disabled){
701             this.el.addClass('x-btn-focus');
702         }
703     },
704     // private
705     onBlur : function(e){
706         this.el.removeClass('x-btn-focus');
707     },
708
709     // private
710     getClickEl : function(e, isUp){
711        return this.el;
712     },
713
714     // private
715     onMouseDown : function(e){
716         if(!this.disabled && e.button === 0){
717             this.getClickEl(e).addClass('x-btn-click');
718             this.doc.on('mouseup', this.onMouseUp, this);
719         }
720     },
721     // private
722     onMouseUp : function(e){
723         if(e.button === 0){
724             this.getClickEl(e, true).removeClass('x-btn-click');
725             this.doc.un('mouseup', this.onMouseUp, this);
726         }
727     },
728     // private
729     onMenuShow : function(e){
730         if(this.menu.ownerCt == this){
731             this.menu.ownerCt = this;
732             this.ignoreNextClick = 0;
733             this.el.addClass('x-btn-menu-active');
734             this.fireEvent('menushow', this, this.menu);
735         }
736     },
737     // private
738     onMenuHide : function(e){
739         if(this.menu.ownerCt == this){
740             this.el.removeClass('x-btn-menu-active');
741             this.ignoreNextClick = this.restoreClick.defer(250, this);
742             this.fireEvent('menuhide', this, this.menu);
743             delete this.menu.ownerCt;
744         }
745     },
746
747     // private
748     restoreClick : function(){
749         this.ignoreNextClick = 0;
750     }
751
752     /**
753      * @cfg {String} autoEl @hide
754      */
755     /**
756      * @cfg {String/Object} html @hide
757      */
758     /**
759      * @cfg {String} contentEl  @hide
760      */
761     /**
762      * @cfg {Mixed} data  @hide
763      */
764     /**
765      * @cfg {Mixed} tpl  @hide
766      */
767     /**
768      * @cfg {String} tplWriteMode  @hide
769      */
770 });
771 Ext.reg('button', Ext.Button);
772
773 // Private utility class used by Button
774 Ext.ButtonToggleMgr = function(){
775    var groups = {};
776
777    function toggleGroup(btn, state){
778        if(state){
779            var g = groups[btn.toggleGroup];
780            for(var i = 0, l = g.length; i < l; i++){
781                if(g[i] != btn){
782                    g[i].toggle(false);
783                }
784            }
785        }
786    }
787
788    return {
789        register : function(btn){
790            if(!btn.toggleGroup){
791                return;
792            }
793            var g = groups[btn.toggleGroup];
794            if(!g){
795                g = groups[btn.toggleGroup] = [];
796            }
797            g.push(btn);
798            btn.on('toggle', toggleGroup);
799        },
800
801        unregister : function(btn){
802            if(!btn.toggleGroup){
803                return;
804            }
805            var g = groups[btn.toggleGroup];
806            if(g){
807                g.remove(btn);
808                btn.un('toggle', toggleGroup);
809            }
810        },
811
812        /**
813         * Gets the pressed button in the passed group or null
814         * @param {String} group
815         * @return Button
816         */
817        getPressed : function(group){
818            var g = groups[group];
819            if(g){
820                for(var i = 0, len = g.length; i < len; i++){
821                    if(g[i].pressed === true){
822                        return g[i];
823                    }
824                }
825            }
826            return null;
827        }
828    };
829 }();