Upgrade to ExtJS 3.2.1 - Released 04/27/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.1
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.onClick, this);
386         }
387         this.mon(btn, this.clickEvent, this.onClick, this);
388     },
389
390     // private
391     afterRender : function(){
392         Ext.Button.superclass.afterRender.call(this);
393         this.useSetClass = true;
394         this.setButtonClass();
395         this.doc = Ext.getDoc();
396         this.doAutoWidth();
397     },
398
399     /**
400      * Sets the CSS class that provides a background image to use as the button's icon.  This method also changes
401      * the value of the {@link iconCls} config internally.
402      * @param {String} cls The CSS class providing the icon image
403      * @return {Ext.Button} this
404      */
405     setIconClass : function(cls){
406         this.iconCls = cls;
407         if(this.el){
408             this.btnEl.dom.className = '';
409             this.btnEl.addClass(['x-btn-text', cls || '']);
410             this.setButtonClass();
411         }
412         return this;
413     },
414
415     /**
416      * Sets the tooltip for this Button.
417      * @param {String/Object} tooltip. This may be:<div class="mdesc-details"><ul>
418      * <li><b>String</b> : A string to be used as innerHTML (html tags are accepted) to show in a tooltip</li>
419      * <li><b>Object</b> : A configuration object for {@link Ext.QuickTips#register}.</li>
420      * </ul></div>
421      * @return {Ext.Button} this
422      */
423     setTooltip : function(tooltip, /* private */ initial){
424         if(this.rendered){
425             if(!initial){
426                 this.clearTip();
427             }
428             if(Ext.isObject(tooltip)){
429                 Ext.QuickTips.register(Ext.apply({
430                       target: this.btnEl.id
431                 }, tooltip));
432                 this.tooltip = tooltip;
433             }else{
434                 this.btnEl.dom[this.tooltipType] = tooltip;
435             }
436         }else{
437             this.tooltip = tooltip;
438         }
439         return this;
440     },
441
442     // private
443     clearTip : function(){
444         if(Ext.isObject(this.tooltip)){
445             Ext.QuickTips.unregister(this.btnEl);
446         }
447     },
448
449     // private
450     beforeDestroy : function(){
451         if(this.rendered){
452             this.clearTip();
453         }
454         if(this.menu && this.destroyMenu !== false) {
455             Ext.destroy(this.menu);
456         }
457         Ext.destroy(this.repeater);
458     },
459
460     // private
461     onDestroy : function(){
462         if(this.rendered){
463             this.doc.un('mouseover', this.monitorMouseOver, this);
464             this.doc.un('mouseup', this.onMouseUp, this);
465             delete this.doc;
466             delete this.btnEl;
467             Ext.ButtonToggleMgr.unregister(this);
468         }
469         Ext.Button.superclass.onDestroy.call(this);
470     },
471
472     // private
473     doAutoWidth : function(){
474         if(this.autoWidth !== false && this.el && this.text && this.width === undefined){
475             this.el.setWidth('auto');
476             if(Ext.isIE7 && Ext.isStrict){
477                 var ib = this.btnEl;
478                 if(ib && ib.getWidth() > 20){
479                     ib.clip();
480                     ib.setWidth(Ext.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
481                 }
482             }
483             if(this.minWidth){
484                 if(this.el.getWidth() < this.minWidth){
485                     this.el.setWidth(this.minWidth);
486                 }
487             }
488         }
489     },
490
491     /**
492      * Assigns this Button's click handler
493      * @param {Function} handler The function to call when the button is clicked
494      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the handler function is executed.
495      * Defaults to this Button.
496      * @return {Ext.Button} this
497      */
498     setHandler : function(handler, scope){
499         this.handler = handler;
500         this.scope = scope;
501         return this;
502     },
503
504     /**
505      * Sets this Button's text
506      * @param {String} text The button text
507      * @return {Ext.Button} this
508      */
509     setText : function(text){
510         this.text = text;
511         if(this.el){
512             this.btnEl.update(text || '&#160;');
513             this.setButtonClass();
514         }
515         this.doAutoWidth();
516         return this;
517     },
518
519     /**
520      * Sets the background image (inline style) of the button.  This method also changes
521      * the value of the {@link icon} config internally.
522      * @param {String} icon The path to an image to display in the button
523      * @return {Ext.Button} this
524      */
525     setIcon : function(icon){
526         this.icon = icon;
527         if(this.el){
528             this.btnEl.setStyle('background-image', icon ? 'url(' + icon + ')' : '');
529             this.setButtonClass();
530         }
531         return this;
532     },
533
534     /**
535      * Gets the text for this Button
536      * @return {String} The button text
537      */
538     getText : function(){
539         return this.text;
540     },
541
542     /**
543      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
544      * @param {Boolean} state (optional) Force a particular state
545      * @param {Boolean} supressEvent (optional) True to stop events being fired when calling this method.
546      * @return {Ext.Button} this
547      */
548     toggle : function(state, suppressEvent){
549         state = state === undefined ? !this.pressed : !!state;
550         if(state != this.pressed){
551             if(this.rendered){
552                 this.el[state ? 'addClass' : 'removeClass']('x-btn-pressed');
553             }
554             this.pressed = state;
555             if(!suppressEvent){
556                 this.fireEvent('toggle', this, state);
557                 if(this.toggleHandler){
558                     this.toggleHandler.call(this.scope || this, this, state);
559                 }
560             }
561         }
562         return this;
563     },
564
565     // private
566     onDisable : function(){
567         this.onDisableChange(true);
568     },
569
570     // private
571     onEnable : function(){
572         this.onDisableChange(false);
573     },
574
575     onDisableChange : function(disabled){
576         if(this.el){
577             if(!Ext.isIE6 || !this.text){
578                 this.el[disabled ? 'addClass' : 'removeClass'](this.disabledClass);
579             }
580             this.el.dom.disabled = disabled;
581         }
582         this.disabled = disabled;
583     },
584
585     /**
586      * Show this button's menu (if it has one)
587      */
588     showMenu : function(){
589         if(this.rendered && this.menu){
590             if(this.tooltip){
591                 Ext.QuickTips.getQuickTip().cancelShow(this.btnEl);
592             }
593             if(this.menu.isVisible()){
594                 this.menu.hide();
595             }
596             this.menu.ownerCt = this;
597             this.menu.show(this.el, this.menuAlign);
598         }
599         return this;
600     },
601
602     /**
603      * Hide this button's menu (if it has one)
604      */
605     hideMenu : function(){
606         if(this.hasVisibleMenu()){
607             this.menu.hide();
608         }
609         return this;
610     },
611
612     /**
613      * Returns true if the button has a menu and it is visible
614      * @return {Boolean}
615      */
616     hasVisibleMenu : function(){
617         return this.menu && this.menu.ownerCt == this && this.menu.isVisible();
618     },
619
620     // private
621     onClick : function(e){
622         if(e){
623             e.preventDefault();
624         }
625         if(e.button !== 0){
626             return;
627         }
628         if(!this.disabled){
629             if(this.enableToggle && (this.allowDepress !== false || !this.pressed)){
630                 this.toggle();
631             }
632             if(this.menu && !this.hasVisibleMenu() && !this.ignoreNextClick){
633                 this.showMenu();
634             }
635             this.fireEvent('click', this, e);
636             if(this.handler){
637                 //this.el.removeClass('x-btn-over');
638                 this.handler.call(this.scope || this, this, e);
639             }
640         }
641     },
642
643     // private
644     isMenuTriggerOver : function(e, internal){
645         return this.menu && !internal;
646     },
647
648     // private
649     isMenuTriggerOut : function(e, internal){
650         return this.menu && !internal;
651     },
652
653     // private
654     onMouseOver : function(e){
655         if(!this.disabled){
656             var internal = e.within(this.el,  true);
657             if(!internal){
658                 this.el.addClass('x-btn-over');
659                 if(!this.monitoringMouseOver){
660                     this.doc.on('mouseover', this.monitorMouseOver, this);
661                     this.monitoringMouseOver = true;
662                 }
663                 this.fireEvent('mouseover', this, e);
664             }
665             if(this.isMenuTriggerOver(e, internal)){
666                 this.fireEvent('menutriggerover', this, this.menu, e);
667             }
668         }
669     },
670
671     // private
672     monitorMouseOver : function(e){
673         if(e.target != this.el.dom && !e.within(this.el)){
674             if(this.monitoringMouseOver){
675                 this.doc.un('mouseover', this.monitorMouseOver, this);
676                 this.monitoringMouseOver = false;
677             }
678             this.onMouseOut(e);
679         }
680     },
681
682     // private
683     onMouseOut : function(e){
684         var internal = e.within(this.el) && e.target != this.el.dom;
685         this.el.removeClass('x-btn-over');
686         this.fireEvent('mouseout', this, e);
687         if(this.isMenuTriggerOut(e, internal)){
688             this.fireEvent('menutriggerout', this, this.menu, e);
689         }
690     },
691
692     focus : function() {
693         this.btnEl.focus();
694     },
695
696     blur : function() {
697         this.btnEl.blur();
698     },
699
700     // private
701     onFocus : function(e){
702         if(!this.disabled){
703             this.el.addClass('x-btn-focus');
704         }
705     },
706     // private
707     onBlur : function(e){
708         this.el.removeClass('x-btn-focus');
709     },
710
711     // private
712     getClickEl : function(e, isUp){
713        return this.el;
714     },
715
716     // private
717     onMouseDown : function(e){
718         if(!this.disabled && e.button === 0){
719             this.getClickEl(e).addClass('x-btn-click');
720             this.doc.on('mouseup', this.onMouseUp, this);
721         }
722     },
723     // private
724     onMouseUp : function(e){
725         if(e.button === 0){
726             this.getClickEl(e, true).removeClass('x-btn-click');
727             this.doc.un('mouseup', this.onMouseUp, this);
728         }
729     },
730     // private
731     onMenuShow : function(e){
732         if(this.menu.ownerCt == this){
733             this.menu.ownerCt = this;
734             this.ignoreNextClick = 0;
735             this.el.addClass('x-btn-menu-active');
736             this.fireEvent('menushow', this, this.menu);
737         }
738     },
739     // private
740     onMenuHide : function(e){
741         if(this.menu.ownerCt == this){
742             this.el.removeClass('x-btn-menu-active');
743             this.ignoreNextClick = this.restoreClick.defer(250, this);
744             this.fireEvent('menuhide', this, this.menu);
745             delete this.menu.ownerCt;
746         }
747     },
748
749     // private
750     restoreClick : function(){
751         this.ignoreNextClick = 0;
752     }
753
754     /**
755      * @cfg {String} autoEl @hide
756      */
757     /**
758      * @cfg {String/Object} html @hide
759      */
760     /**
761      * @cfg {String} contentEl  @hide
762      */
763     /**
764      * @cfg {Mixed} data  @hide
765      */
766     /**
767      * @cfg {Mixed} tpl  @hide
768      */
769     /**
770      * @cfg {String} tplWriteMode  @hide
771      */
772 });
773 Ext.reg('button', Ext.Button);
774
775 // Private utility class used by Button
776 Ext.ButtonToggleMgr = function(){
777    var groups = {};
778
779    function toggleGroup(btn, state){
780        if(state){
781            var g = groups[btn.toggleGroup];
782            for(var i = 0, l = g.length; i < l; i++){
783                if(g[i] != btn){
784                    g[i].toggle(false);
785                }
786            }
787        }
788    }
789
790    return {
791        register : function(btn){
792            if(!btn.toggleGroup){
793                return;
794            }
795            var g = groups[btn.toggleGroup];
796            if(!g){
797                g = groups[btn.toggleGroup] = [];
798            }
799            g.push(btn);
800            btn.on('toggle', toggleGroup);
801        },
802
803        unregister : function(btn){
804            if(!btn.toggleGroup){
805                return;
806            }
807            var g = groups[btn.toggleGroup];
808            if(g){
809                g.remove(btn);
810                btn.un('toggle', toggleGroup);
811            }
812        },
813
814        /**
815         * Gets the pressed button in the passed group or null
816         * @param {String} group
817         * @return Button
818         */
819        getPressed : function(group){
820            var g = groups[group];
821            if(g){
822                for(var i = 0, len = g.length; i < len; i++){
823                    if(g[i].pressed === true){
824                        return g[i];
825                    }
826                }
827            }
828            return null;
829        }
830    };
831 }();
832 </pre>    
833 </body>
834 </html>