Upgrade to ExtJS 3.3.0 - Released 10/06/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.3.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      * @cfg {Boolean} autoWidth
198      * By default, if a width is not specified the button will attempt to stretch horizontally to fit its content.
199      * If the button is being managed by a width sizing layout (hbox, fit, anchor), set this to false to prevent
200      * the button from doing this automatic sizing.
201      * Defaults to <tt>undefined</tt>.
202      */
203
204     initComponent : function(){
205         Ext.Button.superclass.initComponent.call(this);
206
207         this.addEvents(
208             /**
209              * @event click
210              * Fires when this button is clicked
211              * @param {Button} this
212              * @param {EventObject} e The click event
213              */
214             'click',
215             /**
216              * @event toggle
217              * Fires when the 'pressed' state of this button changes (only if enableToggle = true)
218              * @param {Button} this
219              * @param {Boolean} pressed
220              */
221             'toggle',
222             /**
223              * @event mouseover
224              * Fires when the mouse hovers over the button
225              * @param {Button} this
226              * @param {Event} e The event object
227              */
228             'mouseover',
229             /**
230              * @event mouseout
231              * Fires when the mouse exits the button
232              * @param {Button} this
233              * @param {Event} e The event object
234              */
235             'mouseout',
236             /**
237              * @event menushow
238              * If this button has a menu, this event fires when it is shown
239              * @param {Button} this
240              * @param {Menu} menu
241              */
242             'menushow',
243             /**
244              * @event menuhide
245              * If this button has a menu, this event fires when it is hidden
246              * @param {Button} this
247              * @param {Menu} menu
248              */
249             'menuhide',
250             /**
251              * @event menutriggerover
252              * If this button has a menu, this event fires when the mouse enters the menu triggering element
253              * @param {Button} this
254              * @param {Menu} menu
255              * @param {EventObject} e
256              */
257             'menutriggerover',
258             /**
259              * @event menutriggerout
260              * If this button has a menu, this event fires when the mouse leaves the menu triggering element
261              * @param {Button} this
262              * @param {Menu} menu
263              * @param {EventObject} e
264              */
265             'menutriggerout'
266         );
267         if(this.menu){
268             this.menu = Ext.menu.MenuMgr.get(this.menu);
269         }
270         if(Ext.isString(this.toggleGroup)){
271             this.enableToggle = true;
272         }
273     },
274
275 /**
276   * <p>This method returns an Array which provides substitution parameters for the {@link #template Template} used
277   * to create this Button's DOM structure.</p>
278   * <p>Instances or subclasses which use a different Template to create a different DOM structure may need to provide their
279   * own implementation of this method.</p>
280   * <p>The default implementation which provides data for the default {@link #template} returns an Array containing the
281   * following items:</p><div class="mdetail-params"><ul>
282   * <li>The &lt;button&gt;'s {@link #type}</li>
283   * <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>
284   * <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>
285   * <li>The {@link #cls} CSS class name applied to the button's wrapping &lt;table&gt; element.</li>
286   * <li>The Component id which is applied to the button's wrapping &lt;table&gt; element.</li>
287   * </ul></div>
288   * @return {Array} Substitution data for a Template.
289  */
290     getTemplateArgs : function(){
291         return [this.type, 'x-btn-' + this.scale + ' x-btn-icon-' + this.scale + '-' + this.iconAlign, this.getMenuClass(), this.cls, this.id];
292     },
293
294     // private
295     setButtonClass : function(){
296         if(this.useSetClass){
297             if(!Ext.isEmpty(this.oldCls)){
298                 this.el.removeClass([this.oldCls, 'x-btn-pressed']);
299             }
300             this.oldCls = (this.iconCls || this.icon) ? (this.text ? 'x-btn-text-icon' : 'x-btn-icon') : 'x-btn-noicon';
301             this.el.addClass([this.oldCls, this.pressed ? 'x-btn-pressed' : null]);
302         }
303     },
304
305     // protected
306     getMenuClass : function(){
307         return this.menu ? (this.arrowAlign != 'bottom' ? 'x-btn-arrow' : 'x-btn-arrow-bottom') : '';
308     },
309
310     // private
311     onRender : function(ct, position){
312         if(!this.template){
313             if(!Ext.Button.buttonTemplate){
314                 // hideous table template
315                 Ext.Button.buttonTemplate = new Ext.Template(
316                     '<table id="{4}" cellspacing="0" class="x-btn {3}"><tbody class="{1}">',
317                     '<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>',
318                     '<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>',
319                     '<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>',
320                     '</tbody></table>');
321                 Ext.Button.buttonTemplate.compile();
322             }
323             this.template = Ext.Button.buttonTemplate;
324         }
325
326         var btn, targs = this.getTemplateArgs();
327
328         if(position){
329             btn = this.template.insertBefore(position, targs, true);
330         }else{
331             btn = this.template.append(ct, targs, true);
332         }
333         /**
334          * An {@link Ext.Element Element} encapsulating the Button's clickable element. By default,
335          * this references a <tt>&lt;button&gt;</tt> element. Read only.
336          * @type Ext.Element
337          * @property btnEl
338          */
339         this.btnEl = btn.child(this.buttonSelector);
340         this.mon(this.btnEl, {
341             scope: this,
342             focus: this.onFocus,
343             blur: this.onBlur
344         });
345
346         this.initButtonEl(btn, this.btnEl);
347
348         Ext.ButtonToggleMgr.register(this);
349     },
350
351     // private
352     initButtonEl : function(btn, btnEl){
353         this.el = btn;
354         this.setIcon(this.icon);
355         this.setText(this.text);
356         this.setIconClass(this.iconCls);
357         if(Ext.isDefined(this.tabIndex)){
358             btnEl.dom.tabIndex = this.tabIndex;
359         }
360         if(this.tooltip){
361             this.setTooltip(this.tooltip, true);
362         }
363
364         if(this.handleMouseEvents){
365             this.mon(btn, {
366                 scope: this,
367                 mouseover: this.onMouseOver,
368                 mousedown: this.onMouseDown
369             });
370
371             // new functionality for monitoring on the document level
372             //this.mon(btn, 'mouseout', this.onMouseOut, this);
373         }
374
375         if(this.menu){
376             this.mon(this.menu, {
377                 scope: this,
378                 show: this.onMenuShow,
379                 hide: this.onMenuHide
380             });
381         }
382
383         if(this.repeat){
384             var repeater = new Ext.util.ClickRepeater(btn, Ext.isObject(this.repeat) ? this.repeat : {});
385             this.mon(repeater, 'click', this.onRepeatClick, this);
386         }else{
387             this.mon(btn, this.clickEvent, this.onClick, this);
388         }
389     },
390
391     // private
392     afterRender : function(){
393         Ext.Button.superclass.afterRender.call(this);
394         this.useSetClass = true;
395         this.setButtonClass();
396         this.doc = Ext.getDoc();
397         this.doAutoWidth();
398     },
399
400     /**
401      * Sets the CSS class that provides a background image to use as the button's icon.  This method also changes
402      * the value of the {@link iconCls} config internally.
403      * @param {String} cls The CSS class providing the icon image
404      * @return {Ext.Button} this
405      */
406     setIconClass : function(cls){
407         this.iconCls = cls;
408         if(this.el){
409             this.btnEl.dom.className = '';
410             this.btnEl.addClass(['x-btn-text', cls || '']);
411             this.setButtonClass();
412         }
413         return this;
414     },
415
416     /**
417      * Sets the tooltip for this Button.
418      * @param {String/Object} tooltip. This may be:<div class="mdesc-details"><ul>
419      * <li><b>String</b> : A string to be used as innerHTML (html tags are accepted) to show in a tooltip</li>
420      * <li><b>Object</b> : A configuration object for {@link Ext.QuickTips#register}.</li>
421      * </ul></div>
422      * @return {Ext.Button} this
423      */
424     setTooltip : function(tooltip, /* private */ initial){
425         if(this.rendered){
426             if(!initial){
427                 this.clearTip();
428             }
429             if(Ext.isObject(tooltip)){
430                 Ext.QuickTips.register(Ext.apply({
431                       target: this.btnEl.id
432                 }, tooltip));
433                 this.tooltip = tooltip;
434             }else{
435                 this.btnEl.dom[this.tooltipType] = tooltip;
436             }
437         }else{
438             this.tooltip = tooltip;
439         }
440         return this;
441     },
442
443     // private
444     clearTip : function(){
445         if(Ext.isObject(this.tooltip)){
446             Ext.QuickTips.unregister(this.btnEl);
447         }
448     },
449
450     // private
451     beforeDestroy : function(){
452         if(this.rendered){
453             this.clearTip();
454         }
455         if(this.menu && this.destroyMenu !== false) {
456             Ext.destroy(this.btnEl, this.menu);
457         }
458         Ext.destroy(this.repeater);
459     },
460
461     // private
462     onDestroy : function(){
463         if(this.rendered){
464             this.doc.un('mouseover', this.monitorMouseOver, this);
465             this.doc.un('mouseup', this.onMouseUp, this);
466             delete this.doc;
467             delete this.btnEl;
468             Ext.ButtonToggleMgr.unregister(this);
469         }
470         Ext.Button.superclass.onDestroy.call(this);
471     },
472
473     // private
474     doAutoWidth : function(){
475         if(this.autoWidth !== false && this.el && this.text && this.width === undefined){
476             this.el.setWidth('auto');
477             if(Ext.isIE7 && Ext.isStrict){
478                 var ib = this.btnEl;
479                 if(ib && ib.getWidth() > 20){
480                     ib.clip();
481                     ib.setWidth(Ext.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
482                 }
483             }
484             if(this.minWidth){
485                 if(this.el.getWidth() < this.minWidth){
486                     this.el.setWidth(this.minWidth);
487                 }
488             }
489         }
490     },
491
492     /**
493      * Assigns this Button's click handler
494      * @param {Function} handler The function to call when the button is clicked
495      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the handler function is executed.
496      * Defaults to this Button.
497      * @return {Ext.Button} this
498      */
499     setHandler : function(handler, scope){
500         this.handler = handler;
501         this.scope = scope;
502         return this;
503     },
504
505     /**
506      * Sets this Button's text
507      * @param {String} text The button text
508      * @return {Ext.Button} this
509      */
510     setText : function(text){
511         this.text = text;
512         if(this.el){
513             this.btnEl.update(text || '&#160;');
514             this.setButtonClass();
515         }
516         this.doAutoWidth();
517         return this;
518     },
519
520     /**
521      * Sets the background image (inline style) of the button.  This method also changes
522      * the value of the {@link icon} config internally.
523      * @param {String} icon The path to an image to display in the button
524      * @return {Ext.Button} this
525      */
526     setIcon : function(icon){
527         this.icon = icon;
528         if(this.el){
529             this.btnEl.setStyle('background-image', icon ? 'url(' + icon + ')' : '');
530             this.setButtonClass();
531         }
532         return this;
533     },
534
535     /**
536      * Gets the text for this Button
537      * @return {String} The button text
538      */
539     getText : function(){
540         return this.text;
541     },
542
543     /**
544      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
545      * @param {Boolean} state (optional) Force a particular state
546      * @param {Boolean} supressEvent (optional) True to stop events being fired when calling this method.
547      * @return {Ext.Button} this
548      */
549     toggle : function(state, suppressEvent){
550         state = state === undefined ? !this.pressed : !!state;
551         if(state != this.pressed){
552             if(this.rendered){
553                 this.el[state ? 'addClass' : 'removeClass']('x-btn-pressed');
554             }
555             this.pressed = state;
556             if(!suppressEvent){
557                 this.fireEvent('toggle', this, state);
558                 if(this.toggleHandler){
559                     this.toggleHandler.call(this.scope || this, this, state);
560                 }
561             }
562         }
563         return this;
564     },
565
566     // private
567     onDisable : function(){
568         this.onDisableChange(true);
569     },
570
571     // private
572     onEnable : function(){
573         this.onDisableChange(false);
574     },
575
576     onDisableChange : function(disabled){
577         if(this.el){
578             if(!Ext.isIE6 || !this.text){
579                 this.el[disabled ? 'addClass' : 'removeClass'](this.disabledClass);
580             }
581             this.el.dom.disabled = disabled;
582         }
583         this.disabled = disabled;
584     },
585
586     /**
587      * Show this button's menu (if it has one)
588      */
589     showMenu : function(){
590         if(this.rendered && this.menu){
591             if(this.tooltip){
592                 Ext.QuickTips.getQuickTip().cancelShow(this.btnEl);
593             }
594             if(this.menu.isVisible()){
595                 this.menu.hide();
596             }
597             this.menu.ownerCt = this;
598             this.menu.show(this.el, this.menuAlign);
599         }
600         return this;
601     },
602
603     /**
604      * Hide this button's menu (if it has one)
605      */
606     hideMenu : function(){
607         if(this.hasVisibleMenu()){
608             this.menu.hide();
609         }
610         return this;
611     },
612
613     /**
614      * Returns true if the button has a menu and it is visible
615      * @return {Boolean}
616      */
617     hasVisibleMenu : function(){
618         return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
619     },
620     
621     // private
622     onRepeatClick : function(repeat, e){
623         this.onClick(e);
624     },
625
626     // private
627     onClick : function(e){
628         if(e){
629             e.preventDefault();
630         }
631         if(e.button !== 0){
632             return;
633         }
634         if(!this.disabled){
635             this.doToggle();
636             if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
637                 this.showMenu();
638             }
639             this.fireEvent('click', this, e);
640             if(this.handler){
641                 //this.el.removeClass('x-btn-over');
642                 this.handler.call(this.scope || this, this, e);
643             }
644         }
645     },
646     
647     // private
648     doToggle: function(){
649         if (this.enableToggle && (this.allowDepress !== false || !this.pressed)) {
650             this.toggle();
651         }
652     },
653
654     // private
655     isMenuTriggerOver : function(e, internal){
656         return this.menu && !internal;
657     },
658
659     // private
660     isMenuTriggerOut : function(e, internal){
661         return this.menu && !internal;
662     },
663
664     // private
665     onMouseOver : function(e){
666         if(!this.disabled){
667             var internal = e.within(this.el,  true);
668             if(!internal){
669                 this.el.addClass('x-btn-over');
670                 if(!this.monitoringMouseOver){
671                     this.doc.on('mouseover', this.monitorMouseOver, this);
672                     this.monitoringMouseOver = true;
673                 }
674                 this.fireEvent('mouseover', this, e);
675             }
676             if(this.isMenuTriggerOver(e, internal)){
677                 this.fireEvent('menutriggerover', this, this.menu, e);
678             }
679         }
680     },
681
682     // private
683     monitorMouseOver : function(e){
684         if(e.target != this.el.dom && !e.within(this.el)){
685             if(this.monitoringMouseOver){
686                 this.doc.un('mouseover', this.monitorMouseOver, this);
687                 this.monitoringMouseOver = false;
688             }
689             this.onMouseOut(e);
690         }
691     },
692
693     // private
694     onMouseOut : function(e){
695         var internal = e.within(this.el) && e.target != this.el.dom;
696         this.el.removeClass('x-btn-over');
697         this.fireEvent('mouseout', this, e);
698         if(this.isMenuTriggerOut(e, internal)){
699             this.fireEvent('menutriggerout', this, this.menu, e);
700         }
701     },
702
703     focus : function() {
704         this.btnEl.focus();
705     },
706
707     blur : function() {
708         this.btnEl.blur();
709     },
710
711     // private
712     onFocus : function(e){
713         if(!this.disabled){
714             this.el.addClass('x-btn-focus');
715         }
716     },
717     // private
718     onBlur : function(e){
719         this.el.removeClass('x-btn-focus');
720     },
721
722     // private
723     getClickEl : function(e, isUp){
724        return this.el;
725     },
726
727     // private
728     onMouseDown : function(e){
729         if(!this.disabled && e.button === 0){
730             this.getClickEl(e).addClass('x-btn-click');
731             this.doc.on('mouseup', this.onMouseUp, this);
732         }
733     },
734     // private
735     onMouseUp : function(e){
736         if(e.button === 0){
737             this.getClickEl(e, true).removeClass('x-btn-click');
738             this.doc.un('mouseup', this.onMouseUp, this);
739         }
740     },
741     // private
742     onMenuShow : function(e){
743         if(this.menu.ownerCt == this){
744             this.menu.ownerCt = this;
745             this.ignoreNextClick = 0;
746             this.el.addClass('x-btn-menu-active');
747             this.fireEvent('menushow', this, this.menu);
748         }
749     },
750     // private
751     onMenuHide : function(e){
752         if(this.menu.ownerCt == this){
753             this.el.removeClass('x-btn-menu-active');
754             this.ignoreNextClick = this.restoreClick.defer(250, this);
755             this.fireEvent('menuhide', this, this.menu);
756             delete this.menu.ownerCt;
757         }
758     },
759
760     // private
761     restoreClick : function(){
762         this.ignoreNextClick = 0;
763     }
764
765     /**
766      * @cfg {String} autoEl @hide
767      */
768     /**
769      * @cfg {String/Object} html @hide
770      */
771     /**
772      * @cfg {String} contentEl  @hide
773      */
774     /**
775      * @cfg {Mixed} data  @hide
776      */
777     /**
778      * @cfg {Mixed} tpl  @hide
779      */
780     /**
781      * @cfg {String} tplWriteMode  @hide
782      */
783 });
784 Ext.reg('button', Ext.Button);
785
786 // Private utility class used by Button
787 Ext.ButtonToggleMgr = function(){
788    var groups = {};
789
790    function toggleGroup(btn, state){
791        if(state){
792            var g = groups[btn.toggleGroup];
793            for(var i = 0, l = g.length; i < l; i++){
794                if(g[i] != btn){
795                    g[i].toggle(false);
796                }
797            }
798        }
799    }
800
801    return {
802        register : function(btn){
803            if(!btn.toggleGroup){
804                return;
805            }
806            var g = groups[btn.toggleGroup];
807            if(!g){
808                g = groups[btn.toggleGroup] = [];
809            }
810            g.push(btn);
811            btn.on('toggle', toggleGroup);
812        },
813
814        unregister : function(btn){
815            if(!btn.toggleGroup){
816                return;
817            }
818            var g = groups[btn.toggleGroup];
819            if(g){
820                g.remove(btn);
821                btn.un('toggle', toggleGroup);
822            }
823        },
824
825        /**
826         * Gets the pressed button in the passed group or null
827         * @param {String} group
828         * @return Button
829         */
830        getPressed : function(group){
831            var g = groups[group];
832            if(g){
833                for(var i = 0, len = g.length; i < len; i++){
834                    if(g[i].pressed === true){
835                        return g[i];
836                    }
837                }
838            }
839            return null;
840        }
841    };
842 }();
843 </pre>    
844 </body>
845 </html>