Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / docs / source / Button.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.2.0
11  * Copyright(c) 2006-2010 Ext JS, Inc.
12  * licensing@extjs.com
13  * http://www.extjs.com/license
14  */
15 <div id="cls-Ext.Button"></div>/**
16  * @class Ext.Button
17  * @extends Ext.BoxComponent
18  * Simple Button class
19  * @cfg {String} text The button text to be used as innerHTML (html tags are accepted)
20  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
21  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:'x-btn-text-icon')
22  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event).
23  * The handler is passed the following parameters:<div class="mdetail-params"><ul>
24  * <li><code>b</code> : Button<div class="sub-desc">This Button.</div></li>
25  * <li><code>e</code> : EventObject<div class="sub-desc">The click event.</div></li>
26  * </ul></div>
27  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width).
28  * See also {@link Ext.Panel}.<tt>{@link Ext.Panel#minButtonWidth minButtonWidth}</tt>.
29  * @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
30  * @cfg {Boolean} hidden True to start hidden (defaults to false)
31  * @cfg {Boolean} disabled True to start disabled (defaults to false)
32  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
33  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed)
34  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
35  * a {@link Ext.util.ClickRepeater ClickRepeater} config object (defaults to false).
36  * @constructor
37  * Create a new button
38  * @param {Object} config The config object
39  * @xtype button
40  */
41 Ext.Button = Ext.extend(Ext.BoxComponent, {
42     /**
43      * Read-only. True if this button is hidden
44      * @type Boolean
45      */
46     hidden : false,
47     /**
48      * Read-only. True if this button is disabled
49      * @type Boolean
50      */
51     disabled : false,
52     /**
53      * Read-only. True if this button is pressed (only if enableToggle = true)
54      * @type Boolean
55      */
56     pressed : false,
57
58     /**
59      * @cfg {Number} tabIndex Set a DOM tabIndex for this button (defaults to undefined)
60      */
61
62     /**
63      * @cfg {Boolean} allowDepress
64      * False to not allow a pressed Button to be depressed (defaults to undefined). Only valid when {@link #enableToggle} is true.
65      */
66
67     /**
68      * @cfg {Boolean} enableToggle
69      * True to enable pressed/not pressed toggling (defaults to false)
70      */
71     enableToggle : false,
72     /**
73      * @cfg {Function} toggleHandler
74      * Function called when a Button with {@link #enableToggle} set to true is clicked. Two arguments are passed:<ul class="mdetail-params">
75      * <li><b>button</b> : Ext.Button<div class="sub-desc">this Button object</div></li>
76      * <li><b>state</b> : Boolean<div class="sub-desc">The next state of the Button, true means pressed.</div></li>
77      * </ul>
78      */
79     /**
80      * @cfg {Mixed} menu
81      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
82      */
83     /**
84      * @cfg {String} menuAlign
85      * The position to align the menu to (see {@link Ext.Element#alignTo} for more details, defaults to 'tl-bl?').
86      */
87     menuAlign : 'tl-bl?',
88
89     /**
90      * @cfg {String} overflowText If used in a {@link Ext.Toolbar Toolbar}, the
91      * text to be used if this item is shown in the overflow menu. See also
92      * {@link Ext.Toolbar.Item}.<code>{@link Ext.Toolbar.Item#overflowText overflowText}</code>.
93      */
94     /**
95      * @cfg {String} iconCls
96      * A css class which sets a background image to be used as the icon for this button
97      */
98     /**
99      * @cfg {String} type
100      * submit, reset or button - defaults to 'button'
101      */
102     type : 'button',
103
104     // private
105     menuClassTarget : 'tr:nth(2)',
106
107     /**
108      * @cfg {String} clickEvent
109      * The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu).
110      * Defaults to <tt>'click'</tt>.
111      */
112     clickEvent : 'click',
113
114     /**
115      * @cfg {Boolean} handleMouseEvents
116      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
117      */
118     handleMouseEvents : true,
119
120     /**
121      * @cfg {String} tooltipType
122      * The type of tooltip to use. Either 'qtip' (default) for QuickTips or 'title' for title attribute.
123      */
124     tooltipType : 'qtip',
125
126     /**
127      * @cfg {String} buttonSelector
128      * <p>(Optional) A {@link Ext.DomQuery DomQuery} selector which is used to extract the active, clickable element from the
129      * DOM structure created.</p>
130      * <p>When a custom {@link #template} is used, you  must ensure that this selector results in the selection of
131      * a focussable element.</p>
132      * <p>Defaults to <b><tt>'button:first-child'</tt></b>.</p>
133      */
134     buttonSelector : 'button:first-child',
135
136     /**
137      * @cfg {String} scale
138      * <p>(Optional) The size of the Button. Three values are allowed:</p>
139      * <ul class="mdetail-params">
140      * <li>'small'<div class="sub-desc">Results in the button element being 16px high.</div></li>
141      * <li>'medium'<div class="sub-desc">Results in the button element being 24px high.</div></li>
142      * <li>'large'<div class="sub-desc">Results in the button element being 32px high.</div></li>
143      * </ul>
144      * <p>Defaults to <b><tt>'small'</tt></b>.</p>
145      */
146     scale : 'small',
147
148     /**
149      * @cfg {Object} scope The scope (<tt><b>this</b></tt> reference) in which the
150      * <code>{@link #handler}</code> and <code>{@link #toggleHandler}</code> is
151      * executed. Defaults to this Button.
152      */
153
154     /**
155      * @cfg {String} iconAlign
156      * <p>(Optional) The side of the Button box to render the icon. Four values are allowed:</p>
157      * <ul class="mdetail-params">
158      * <li>'top'<div class="sub-desc"></div></li>
159      * <li>'right'<div class="sub-desc"></div></li>
160      * <li>'bottom'<div class="sub-desc"></div></li>
161      * <li>'left'<div class="sub-desc"></div></li>
162      * </ul>
163      * <p>Defaults to <b><tt>'left'</tt></b>.</p>
164      */
165     iconAlign : 'left',
166
167     /**
168      * @cfg {String} arrowAlign
169      * <p>(Optional) The side of the Button box to render the arrow if the button has an associated {@link #menu}.
170      * Two values are allowed:</p>
171      * <ul class="mdetail-params">
172      * <li>'right'<div class="sub-desc"></div></li>
173      * <li>'bottom'<div class="sub-desc"></div></li>
174      * </ul>
175      * <p>Defaults to <b><tt>'right'</tt></b>.</p>
176      */
177     arrowAlign : 'right',
178
179     /**
180      * @cfg {Ext.Template} template (Optional)
181      * <p>A {@link Ext.Template Template} used to create the Button's DOM structure.</p>
182      * Instances, or subclasses which need a different DOM structure may provide a different
183      * template layout in conjunction with an implementation of {@link #getTemplateArgs}.
184      * @type Ext.Template
185      * @property template
186      */
187     /**
188      * @cfg {String} cls
189      * A CSS class string to apply to the button's main element.
190      */
191     /**
192      * @property menu
193      * @type Menu
194      * The {@link Ext.menu.Menu Menu} object associated with this Button when configured with the {@link #menu} config option.
195      */
196
197     initComponent : function(){
198         Ext.Button.superclass.initComponent.call(this);
199
200         this.addEvents(
201             /**
202              * @event click
203              * Fires when this button is clicked
204              * @param {Button} this
205              * @param {EventObject} e The click event
206              */
207             'click',
208             /**
209              * @event toggle
210              * Fires when the 'pressed' state of this button changes (only if enableToggle = true)
211              * @param {Button} this
212              * @param {Boolean} pressed
213              */
214             'toggle',
215             /**
216              * @event mouseover
217              * Fires when the mouse hovers over the button
218              * @param {Button} this
219              * @param {Event} e The event object
220              */
221             'mouseover',
222             /**
223              * @event mouseout
224              * Fires when the mouse exits the button
225              * @param {Button} this
226              * @param {Event} e The event object
227              */
228             'mouseout',
229             /**
230              * @event menushow
231              * If this button has a menu, this event fires when it is shown
232              * @param {Button} this
233              * @param {Menu} menu
234              */
235             'menushow',
236             /**
237              * @event menuhide
238              * If this button has a menu, this event fires when it is hidden
239              * @param {Button} this
240              * @param {Menu} menu
241              */
242             'menuhide',
243             /**
244              * @event menutriggerover
245              * If this button has a menu, this event fires when the mouse enters the menu triggering element
246              * @param {Button} this
247              * @param {Menu} menu
248              * @param {EventObject} e
249              */
250             'menutriggerover',
251             /**
252              * @event menutriggerout
253              * If this button has a menu, this event fires when the mouse leaves the menu triggering element
254              * @param {Button} this
255              * @param {Menu} menu
256              * @param {EventObject} e
257              */
258             'menutriggerout'
259         );
260         if(this.menu){
261             this.menu = Ext.menu.MenuMgr.get(this.menu);
262         }
263         if(Ext.isString(this.toggleGroup)){
264             this.enableToggle = true;
265         }
266     },
267
268 /**
269   * <p>This method returns an Array which provides substitution parameters for the {@link #template Template} used
270   * to create this Button's DOM structure.</p>
271   * <p>Instances or subclasses which use a different Template to create a different DOM structure may need to provide their
272   * own implementation of this method.</p>
273   * <p>The default implementation which provides data for the default {@link #template} returns an Array containing the
274   * following items:</p><div class="mdetail-params"><ul>
275   * <li>The &lt;button&gt;'s {@link #type}</li>
276   * <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>
277   * <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>
278   * <li>The {@link #cls} CSS class name applied to the button's wrapping &lt;table&gt; element.</li>
279   * <li>The Component id which is applied to the button's wrapping &lt;table&gt; element.</li>
280   * </ul></div>
281   * @return {Array} Substitution data for a Template.
282  */
283     getTemplateArgs : function(){
284         return [this.type, 'x-btn-' + this.scale + ' x-btn-icon-' + this.scale + '-' + this.iconAlign, this.getMenuClass(), this.cls, this.id];
285     },
286
287     // private
288     setButtonClass : function(){
289         if(this.useSetClass){
290             if(!Ext.isEmpty(this.oldCls)){
291                 this.el.removeClass([this.oldCls, 'x-btn-pressed']);
292             }
293             this.oldCls = (this.iconCls || this.icon) ? (this.text ? ' x-btn-text-icon' : ' x-btn-icon') : ' x-btn-noicon';
294             this.el.addClass([this.oldCls, this.pressed ? 'x-btn-pressed' : null]);
295         }
296     },
297
298     // protected
299     getMenuClass : function(){
300         return this.menu ? (this.arrowAlign != 'bottom' ? 'x-btn-arrow' : 'x-btn-arrow-bottom') : '';
301     },
302
303     // private
304     onRender : function(ct, position){
305         if(!this.template){
306             if(!Ext.Button.buttonTemplate){
307                 // hideous table template
308                 Ext.Button.buttonTemplate = new Ext.Template(
309                     '<table id="{4}" cellspacing="0" class="x-btn {3}"><tbody class="{1}">',
310                     '<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>',
311                     '<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>',
312                     '<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>',
313                     '</tbody></table>');
314                 Ext.Button.buttonTemplate.compile();
315             }
316             this.template = Ext.Button.buttonTemplate;
317         }
318
319         var btn, targs = this.getTemplateArgs();
320
321         if(position){
322             btn = this.template.insertBefore(position, targs, true);
323         }else{
324             btn = this.template.append(ct, targs, true);
325         }
326         /**
327          * An {@link Ext.Element Element} encapsulating the Button's clickable element. By default,
328          * this references a <tt>&lt;button&gt;</tt> element. Read only.
329          * @type Ext.Element
330          * @property btnEl
331          */
332         this.btnEl = btn.child(this.buttonSelector);
333         this.mon(this.btnEl, {
334             scope: this,
335             focus: this.onFocus,
336             blur: this.onBlur
337         });
338
339         this.initButtonEl(btn, this.btnEl);
340
341         Ext.ButtonToggleMgr.register(this);
342     },
343
344     // private
345     initButtonEl : function(btn, btnEl){
346         this.el = btn;
347         this.setIcon(this.icon);
348         this.setText(this.text);
349         this.setIconClass(this.iconCls);
350         if(Ext.isDefined(this.tabIndex)){
351             btnEl.dom.tabIndex = this.tabIndex;
352         }
353         if(this.tooltip){
354             this.setTooltip(this.tooltip, true);
355         }
356
357         if(this.handleMouseEvents){
358             this.mon(btn, {
359                 scope: this,
360                 mouseover: this.onMouseOver,
361                 mousedown: this.onMouseDown
362             });
363
364             // new functionality for monitoring on the document level
365             //this.mon(btn, 'mouseout', this.onMouseOut, this);
366         }
367
368         if(this.menu){
369             this.mon(this.menu, {
370                 scope: this,
371                 show: this.onMenuShow,
372                 hide: this.onMenuHide
373             });
374         }
375
376         if(this.repeat){
377             var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
378             this.mon(repeater, 'click', this.onClick, this);
379         }
380         this.mon(btn, this.clickEvent, this.onClick, this);
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.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.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     onClick : function(e){
615         if(e){
616             e.preventDefault();
617         }
618         if(e.button !== 0){
619             return;
620         }
621         if(!this.disabled){
622             if(this.enableToggle && (this.allowDepress !== false || !this.pressed)){
623                 this.toggle();
624             }
625             if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
626                 this.showMenu();
627             }
628             this.fireEvent('click', this, e);
629             if(this.handler){
630                 //this.el.removeClass('x-btn-over');
631                 this.handler.call(this.scope || this, this, e);
632             }
633         }
634     },
635
636     // private
637     isMenuTriggerOver : function(e, internal){
638         return this.menu && !internal;
639     },
640
641     // private
642     isMenuTriggerOut : function(e, internal){
643         return this.menu && !internal;
644     },
645
646     // private
647     onMouseOver : function(e){
648         if(!this.disabled){
649             var internal = e.within(this.el,  true);
650             if(!internal){
651                 this.el.addClass('x-btn-over');
652                 if(!this.monitoringMouseOver){
653                     this.doc.on('mouseover', this.monitorMouseOver, this);
654                     this.monitoringMouseOver = true;
655                 }
656                 this.fireEvent('mouseover', this, e);
657             }
658             if(this.isMenuTriggerOver(e, internal)){
659                 this.fireEvent('menutriggerover', this, this.menu, e);
660             }
661         }
662     },
663
664     // private
665     monitorMouseOver : function(e){
666         if(e.target != this.el.dom && !e.within(this.el)){
667             if(this.monitoringMouseOver){
668                 this.doc.un('mouseover', this.monitorMouseOver, this);
669                 this.monitoringMouseOver = false;
670             }
671             this.onMouseOut(e);
672         }
673     },
674
675     // private
676     onMouseOut : function(e){
677         var internal = e.within(this.el) && e.target != this.el.dom;
678         this.el.removeClass('x-btn-over');
679         this.fireEvent('mouseout', this, e);
680         if(this.isMenuTriggerOut(e, internal)){
681             this.fireEvent('menutriggerout', this, this.menu, e);
682         }
683     },
684
685     focus : function() {
686         this.btnEl.focus();
687     },
688
689     blur : function() {
690         this.btnEl.blur();
691     },
692
693     // private
694     onFocus : function(e){
695         if(!this.disabled){
696             this.el.addClass('x-btn-focus');
697         }
698     },
699     // private
700     onBlur : function(e){
701         this.el.removeClass('x-btn-focus');
702     },
703
704     // private
705     getClickEl : function(e, isUp){
706        return this.el;
707     },
708
709     // private
710     onMouseDown : function(e){
711         if(!this.disabled && e.button === 0){
712             this.getClickEl(e).addClass('x-btn-click');
713             this.doc.on('mouseup', this.onMouseUp, this);
714         }
715     },
716     // private
717     onMouseUp : function(e){
718         if(e.button === 0){
719             this.getClickEl(e, true).removeClass('x-btn-click');
720             this.doc.un('mouseup', this.onMouseUp, this);
721         }
722     },
723     // private
724     onMenuShow : function(e){
725         if(this.menu.ownerCt == this){
726             this.menu.ownerCt = this;
727             this.ignoreNextClick = 0;
728             this.el.addClass('x-btn-menu-active');
729             this.fireEvent('menushow', this, this.menu);
730         }
731     },
732     // private
733     onMenuHide : function(e){
734         if(this.menu.ownerCt == this){
735             this.el.removeClass('x-btn-menu-active');
736             this.ignoreNextClick = this.restoreClick.defer(250, this);
737             this.fireEvent('menuhide', this, this.menu);
738             delete this.menu.ownerCt;
739         }
740     },
741
742     // private
743     restoreClick : function(){
744         this.ignoreNextClick = 0;
745     }
746
747     /**
748      * @cfg {String} autoEl @hide
749      */
750     /**
751      * @cfg {String/Object} html @hide
752      */
753     /**
754      * @cfg {String} contentEl  @hide
755      */
756     /**
757      * @cfg {Mixed} data  @hide
758      */
759     /**
760      * @cfg {Mixed} tpl  @hide
761      */
762     /**
763      * @cfg {String} tplWriteMode  @hide
764      */
765 });
766 Ext.reg('button', Ext.Button);
767
768 // Private utility class used by Button
769 Ext.ButtonToggleMgr = function(){
770    var groups = {};
771
772    function toggleGroup(btn, state){
773        if(state){
774            var g = groups[btn.toggleGroup];
775            for(var i = 0, l = g.length; i < l; i++){
776                if(g[i] != btn){
777                    g[i].toggle(false);
778                }
779            }
780        }
781    }
782
783    return {
784        register : function(btn){
785            if(!btn.toggleGroup){
786                return;
787            }
788            var g = groups[btn.toggleGroup];
789            if(!g){
790                g = groups[btn.toggleGroup] = [];
791            }
792            g.push(btn);
793            btn.on('toggle', toggleGroup);
794        },
795
796        unregister : function(btn){
797            if(!btn.toggleGroup){
798                return;
799            }
800            var g = groups[btn.toggleGroup];
801            if(g){
802                g.remove(btn);
803                btn.un('toggle', toggleGroup);
804            }
805        },
806
807        /**
808         * Gets the pressed button in the passed group or null
809         * @param {String} group
810         * @return Button
811         */
812        getPressed : function(group){
813            var g = groups[group];
814            if(g){
815                for(var i = 0, len = g.length; i < len; i++){
816                    if(g[i].pressed === true){
817                        return g[i];
818                    }
819                }
820            }
821            return null;
822        }
823    };
824 }();
825 </pre>    
826 </body>
827 </html>