TabPanel.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:40k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.TabPanel
  9.  * <p>A basic tab container. TabPanels can be used exactly like a standard {@link Ext.Panel}
  10.  * for layout purposes, but also have special support for containing child Components
  11.  * (<tt>{@link Ext.Container#items items}</tt>) that are managed using a
  12.  * {@link Ext.layout.CardLayout CardLayout layout manager}, and displayed as separate tabs.</p>
  13.  *
  14.  * <b>Note:</b> By default, a tab's close tool <i>destroys</i> the child tab Component
  15.  * and all its descendants. This makes the child tab Component, and all its descendants <b>unusable</b>. To enable
  16.  * re-use of a tab, configure the TabPanel with <b><code>{@link #autoDestroy autoDestroy: false}</code></b>.
  17.  *
  18.  * <p><b><u>TabPanel header/footer elements</u></b></p>
  19.  * <p>TabPanels use their {@link Ext.Panel#header header} or {@link Ext.Panel#footer footer} element
  20.  * (depending on the {@link #tabPosition} configuration) to accommodate the tab selector buttons.
  21.  * This means that a TabPanel will not display any configured title, and will not display any
  22.  * configured header {@link Ext.Panel#tools tools}.</p>
  23.  * <p>To display a header, embed the TabPanel in a {@link Ext.Panel Panel} which uses
  24.  * <b><tt>{@link Ext.Container#layout layout:'fit'}</tt></b>.</p>
  25.  *
  26.  * <p><b><u>Tab Events</u></b></p>
  27.  * <p>There is no actual tab class &mdash; each tab is simply a {@link Ext.BoxComponent Component}
  28.  * such as a {@link Ext.Panel Panel}. However, when rendered in a TabPanel, each child Component
  29.  * can fire additional events that only exist for tabs and are not available from other Components.
  30.  * These events are:</p>
  31.  * <div><ul class="mdetail-params">
  32.  * <li><tt><b>{@link Ext.Panel#activate activate}</b></tt> : Fires when this Component becomes
  33.  * the active tab.</li>
  34.  * <li><tt><b>{@link Ext.Panel#deactivate deactivate}</b></tt> : Fires when the Component that
  35.  * was the active tab becomes deactivated.</li>
  36.  * </ul></div>
  37.  * <p><b><u>Creating TabPanels from Code</u></b></p>
  38.  * <p>TabPanels can be created and rendered completely in code, as in this example:</p>
  39.  * <pre><code>
  40. var tabs = new Ext.TabPanel({
  41.     renderTo: Ext.getBody(),
  42.     activeTab: 0,
  43.     items: [{
  44.         title: 'Tab 1',
  45.         html: 'A simple tab'
  46.     },{
  47.         title: 'Tab 2',
  48.         html: 'Another one'
  49.     }]
  50. });
  51. </code></pre>
  52.  * <p><b><u>Creating TabPanels from Existing Markup</u></b></p>
  53.  * <p>TabPanels can also be rendered from pre-existing markup in a couple of ways.</p>
  54.  * <div><ul class="mdetail-params">
  55.  *
  56.  * <li>Pre-Structured Markup</li>
  57.  * <div class="sub-desc">
  58.  * <p>A container div with one or more nested tab divs with class <tt>'x-tab'</tt> can be rendered entirely
  59.  * from existing markup (See the {@link #autoTabs} example).</p>
  60.  * </div>
  61.  *
  62.  * <li>Un-Structured Markup</li>
  63.  * <div class="sub-desc">
  64.  * <p>A TabPanel can also be rendered from markup that is not strictly structured by simply specifying by id
  65.  * which elements should be the container and the tabs. Using this method tab content can be pulled from different
  66.  * elements within the page by id regardless of page structure. For example:</p>
  67.  * <pre><code>
  68. var tabs = new Ext.TabPanel({
  69.     renderTo: 'my-tabs',
  70.     activeTab: 0,
  71.     items:[
  72.         {contentEl:'tab1', title:'Tab 1'},
  73.         {contentEl:'tab2', title:'Tab 2'}
  74.     ]
  75. });
  76. // Note that the tabs do not have to be nested within the container (although they can be)
  77. &lt;div id="my-tabs">&lt;/div>
  78. &lt;div id="tab1" class="x-hide-display">A simple tab&lt;/div>
  79. &lt;div id="tab2" class="x-hide-display">Another one&lt;/div>
  80. </code></pre>
  81.  * Note that the tab divs in this example contain the class <tt>'x-hide-display'</tt> so that they can be rendered
  82.  * deferred without displaying outside the tabs. You could alternately set <tt>{@link #deferredRender} = false </tt>
  83.  * to render all content tabs on page load.
  84.  * </div>
  85.  *
  86.  * </ul></div>
  87.  *
  88.  * @extends Ext.Panel
  89.  * @constructor
  90.  * @param {Object} config The configuration options
  91.  * @xtype tabpanel
  92.  */
  93. Ext.TabPanel = Ext.extend(Ext.Panel,  {
  94.     /**
  95.      * @cfg {Boolean} layoutOnTabChange
  96.      * Set to true to force a layout of the active tab when the tab is changed. Defaults to false.
  97.      * See {@link Ext.layout.CardLayout}.<code>{@link Ext.layout.CardLayout#layoutOnCardChange layoutOnCardChange}</code>.
  98.      */
  99.     /**
  100.      * @cfg {String} tabCls <b>This config option is used on <u>child Components</u> of ths TabPanel.</b> A CSS
  101.      * class name applied to the tab strip item representing the child Component, allowing special
  102.      * styling to be applied.
  103.      */
  104.     /**
  105.      * @cfg {Boolean} monitorResize True to automatically monitor window resize events and rerender the layout on
  106.      * browser resize (defaults to true).
  107.      */
  108.     monitorResize : true,
  109.     /**
  110.      * @cfg {Boolean} deferredRender
  111.      * <p><tt>true</tt> by default to defer the rendering of child <tt>{@link Ext.Container#items items}</tt>
  112.      * to the browsers DOM until a tab is activated. <tt>false</tt> will render all contained
  113.      * <tt>{@link Ext.Container#items items}</tt> as soon as the {@link Ext.layout.CardLayout layout}
  114.      * is rendered. If there is a significant amount of content or a lot of heavy controls being
  115.      * rendered into panels that are not displayed by default, setting this to <tt>true</tt> might
  116.      * improve performance.</p>
  117.      * <br><p>The <tt>deferredRender</tt> property is internally passed to the layout manager for
  118.      * TabPanels ({@link Ext.layout.CardLayout}) as its {@link Ext.layout.CardLayout#deferredRender}
  119.      * configuration value.</p>
  120.      * <br><p><b>Note</b>: leaving <tt>deferredRender</tt> as <tt>true</tt> means that the content
  121.      * within an unactivated tab will not be available. For example, this means that if the TabPanel
  122.      * is within a {@link Ext.form.FormPanel form}, then until a tab is activated, any Fields within
  123.      * unactivated tabs will not be rendered, and will therefore not be submitted and will not be
  124.      * available to either {@link Ext.form.BasicForm#getValues getValues} or
  125.      * {@link Ext.form.BasicForm#setValues setValues}.</p>
  126.      */
  127.     deferredRender : true,
  128.     /**
  129.      * @cfg {Number} tabWidth The initial width in pixels of each new tab (defaults to 120).
  130.      */
  131.     tabWidth : 120,
  132.     /**
  133.      * @cfg {Number} minTabWidth The minimum width in pixels for each tab when {@link #resizeTabs} = true (defaults to 30).
  134.      */
  135.     minTabWidth : 30,
  136.     /**
  137.      * @cfg {Boolean} resizeTabs True to automatically resize each tab so that the tabs will completely fill the
  138.      * tab strip (defaults to false).  Setting this to true may cause specific widths that might be set per tab to
  139.      * be overridden in order to fit them all into view (although {@link #minTabWidth} will always be honored).
  140.      */
  141.     resizeTabs : false,
  142.     /**
  143.      * @cfg {Boolean} enableTabScroll True to enable scrolling to tabs that may be invisible due to overflowing the
  144.      * overall TabPanel width. Only available with tabPosition:'top' (defaults to false).
  145.      */
  146.     enableTabScroll : false,
  147.     /**
  148.      * @cfg {Number} scrollIncrement The number of pixels to scroll each time a tab scroll button is pressed
  149.      * (defaults to <tt>100</tt>, or if <tt>{@link #resizeTabs} = true</tt>, the calculated tab width).  Only
  150.      * applies when <tt>{@link #enableTabScroll} = true</tt>.
  151.      */
  152.     scrollIncrement : 0,
  153.     /**
  154.      * @cfg {Number} scrollRepeatInterval Number of milliseconds between each scroll while a tab scroll button is
  155.      * continuously pressed (defaults to <tt>400</tt>).
  156.      */
  157.     scrollRepeatInterval : 400,
  158.     /**
  159.      * @cfg {Float} scrollDuration The number of milliseconds that each scroll animation should last (defaults
  160.      * to <tt>.35</tt>). Only applies when <tt>{@link #animScroll} = true</tt>.
  161.      */
  162.     scrollDuration : 0.35,
  163.     /**
  164.      * @cfg {Boolean} animScroll True to animate tab scrolling so that hidden tabs slide smoothly into view (defaults
  165.      * to <tt>true</tt>).  Only applies when <tt>{@link #enableTabScroll} = true</tt>.
  166.      */
  167.     animScroll : true,
  168.     /**
  169.      * @cfg {String} tabPosition The position where the tab strip should be rendered (defaults to <tt>'top'</tt>).
  170.      * The only other supported value is <tt>'bottom'</tt>.  <b>Note</b>: tab scrolling is only supported for
  171.      * <tt>tabPosition: 'top'</tt>.
  172.      */
  173.     tabPosition : 'top',
  174.     /**
  175.      * @cfg {String} baseCls The base CSS class applied to the panel (defaults to <tt>'x-tab-panel'</tt>).
  176.      */
  177.     baseCls : 'x-tab-panel',
  178.     /**
  179.      * @cfg {Boolean} autoTabs
  180.      * <p><tt>true</tt> to query the DOM for any divs with a class of 'x-tab' to be automatically converted
  181.      * to tabs and added to this panel (defaults to <tt>false</tt>).  Note that the query will be executed within
  182.      * the scope of the container element only (so that multiple tab panels from markup can be supported via this
  183.      * method).</p>
  184.      * <p>This method is only possible when the markup is structured correctly as a container with nested divs
  185.      * containing the class <tt>'x-tab'</tt>. To create TabPanels without these limitations, or to pull tab content
  186.      * from other elements on the page, see the example at the top of the class for generating tabs from markup.</p>
  187.      * <p>There are a couple of things to note when using this method:<ul>
  188.      * <li>When using the <tt>autoTabs</tt> config (as opposed to passing individual tab configs in the TabPanel's
  189.      * {@link #items} collection), you must use <tt>{@link #applyTo}</tt> to correctly use the specified <tt>id</tt>
  190.      * as the tab container. The <tt>autoTabs</tt> method <em>replaces</em> existing content with the TabPanel
  191.      * components.</li>
  192.      * <li>Make sure that you set <tt>{@link #deferredRender}: false</tt> so that the content elements for each
  193.      * tab will be rendered into the TabPanel immediately upon page load, otherwise they will not be transformed
  194.      * until each tab is activated and will be visible outside the TabPanel.</li>
  195.      * </ul>Example usage:</p>
  196.      * <pre><code>
  197. var tabs = new Ext.TabPanel({
  198.     applyTo: 'my-tabs',
  199.     activeTab: 0,
  200.     deferredRender: false,
  201.     autoTabs: true
  202. });
  203. // This markup will be converted to a TabPanel from the code above
  204. &lt;div id="my-tabs">
  205.     &lt;div class="x-tab" title="Tab 1">A simple tab&lt;/div>
  206.     &lt;div class="x-tab" title="Tab 2">Another one&lt;/div>
  207. &lt;/div>
  208. </code></pre>
  209.      */
  210.     autoTabs : false,
  211.     /**
  212.      * @cfg {String} autoTabSelector The CSS selector used to search for tabs in existing markup when
  213.      * <tt>{@link #autoTabs} = true</tt> (defaults to <tt>'div.x-tab'</tt>).  This can be any valid selector
  214.      * supported by {@link Ext.DomQuery#select}. Note that the query will be executed within the scope of this
  215.      * tab panel only (so that multiple tab panels from markup can be supported on a page).
  216.      */
  217.     autoTabSelector : 'div.x-tab',
  218.     /**
  219.      * @cfg {String/Number} activeTab A string id or the numeric index of the tab that should be initially
  220.      * activated on render (defaults to undefined).
  221.      */
  222.     activeTab : undefined,
  223.     /**
  224.      * @cfg {Number} tabMargin The number of pixels of space to calculate into the sizing and scrolling of
  225.      * tabs. If you change the margin in CSS, you will need to update this value so calculations are correct
  226.      * with either <tt>{@link #resizeTabs}</tt> or scrolling tabs. (defaults to <tt>2</tt>)
  227.      */
  228.     tabMargin : 2,
  229.     /**
  230.      * @cfg {Boolean} plain </tt>true</tt> to render the tab strip without a background container image
  231.      * (defaults to <tt>false</tt>).
  232.      */
  233.     plain : false,
  234.     /**
  235.      * @cfg {Number} wheelIncrement For scrolling tabs, the number of pixels to increment on mouse wheel
  236.      * scrolling (defaults to <tt>20</tt>).
  237.      */
  238.     wheelIncrement : 20,
  239.     /*
  240.      * This is a protected property used when concatenating tab ids to the TabPanel id for internal uniqueness.
  241.      * It does not generally need to be changed, but can be if external code also uses an id scheme that can
  242.      * potentially clash with this one.
  243.      */
  244.     idDelimiter : '__',
  245.     // private
  246.     itemCls : 'x-tab-item',
  247.     // private config overrides
  248.     elements : 'body',
  249.     headerAsText : false,
  250.     frame : false,
  251.     hideBorders :true,
  252.     // private
  253.     initComponent : function(){
  254.         this.frame = false;
  255.         Ext.TabPanel.superclass.initComponent.call(this);
  256.         this.addEvents(
  257.             /**
  258.              * @event beforetabchange
  259.              * Fires before the active tab changes. Handlers can <tt>return false</tt> to cancel the tab change.
  260.              * @param {TabPanel} this
  261.              * @param {Panel} newTab The tab being activated
  262.              * @param {Panel} currentTab The current active tab
  263.              */
  264.             'beforetabchange',
  265.             /**
  266.              * @event tabchange
  267.              * Fires after the active tab has changed.
  268.              * @param {TabPanel} this
  269.              * @param {Panel} tab The new active tab
  270.              */
  271.             'tabchange',
  272.             /**
  273.              * @event contextmenu
  274.              * Relays the contextmenu event from a tab selector element in the tab strip.
  275.              * @param {TabPanel} this
  276.              * @param {Panel} tab The target tab
  277.              * @param {EventObject} e
  278.              */
  279.             'contextmenu'
  280.         );
  281.         /**
  282.          * @cfg {Object} layoutConfig
  283.          * TabPanel implicitly uses {@link Ext.layout.CardLayout} as its layout manager.
  284.          * <code>layoutConfig</code> may be used to configure this layout manager.
  285.          * <code>{@link #deferredRender}</code> and <code>{@link #layoutOnTabChange}</code>
  286.          * configured on the TabPanel will be applied as configs to the layout manager.
  287.          */
  288.         this.setLayout(new Ext.layout.CardLayout(Ext.apply({
  289.             layoutOnCardChange: this.layoutOnTabChange,
  290.             deferredRender: this.deferredRender
  291.         }, this.layoutConfig)));
  292.         if(this.tabPosition == 'top'){
  293.             this.elements += ',header';
  294.             this.stripTarget = 'header';
  295.         }else {
  296.             this.elements += ',footer';
  297.             this.stripTarget = 'footer';
  298.         }
  299.         if(!this.stack){
  300.             this.stack = Ext.TabPanel.AccessStack();
  301.         }
  302.         this.initItems();
  303.     },
  304.     // private
  305.     onRender : function(ct, position){
  306.         Ext.TabPanel.superclass.onRender.call(this, ct, position);
  307.         if(this.plain){
  308.             var pos = this.tabPosition == 'top' ? 'header' : 'footer';
  309.             this[pos].addClass('x-tab-panel-'+pos+'-plain');
  310.         }
  311.         var st = this[this.stripTarget];
  312.         this.stripWrap = st.createChild({cls:'x-tab-strip-wrap', cn:{
  313.             tag:'ul', cls:'x-tab-strip x-tab-strip-'+this.tabPosition}});
  314.         var beforeEl = (this.tabPosition=='bottom' ? this.stripWrap : null);
  315.         st.createChild({cls:'x-tab-strip-spacer'}, beforeEl);
  316.         this.strip = new Ext.Element(this.stripWrap.dom.firstChild);
  317.         // create an empty span with class x-tab-strip-text to force the height of the header element when there's no tabs.
  318.         this.edge = this.strip.createChild({tag:'li', cls:'x-tab-edge', cn: [{tag: 'span', cls: 'x-tab-strip-text', cn: '&#160;'}]});
  319.         this.strip.createChild({cls:'x-clear'});
  320.         this.body.addClass('x-tab-panel-body-'+this.tabPosition);
  321.         /**
  322.          * @cfg {Template/XTemplate} itemTpl <p>(Optional) A {@link Ext.Template Template} or
  323.          * {@link Ext.XTemplate XTemplate} which may be provided to process the data object returned from
  324.          * <tt>{@link #getTemplateArgs}</tt> to produce a clickable selector element in the tab strip.</p>
  325.          * <p>The main element created should be a <tt>&lt;li></tt> element. In order for a click event on
  326.          * a selector element to be connected to its item, it must take its <i>id</i> from the TabPanel's
  327.          * native <tt>{@link #getTemplateArgs}</tt>.</p>
  328.          * <p>The child element which contains the title text must be marked by the CSS class
  329.          * <tt>x-tab-strip-inner</tt>.</p>
  330.          * <p>To enable closability, the created element should contain an element marked by the CSS class
  331.          * <tt>x-tab-strip-close</tt>.</p>
  332.          * <p>If a custom <tt>itemTpl</tt> is supplied, it is the developer's responsibility to create CSS
  333.          * style rules to create the desired appearance.</p>
  334.          * Below is an example of how to create customized tab selector items:<pre><code>
  335. new Ext.TabPanel({
  336.     renderTo: document.body,
  337.     minTabWidth: 115,
  338.     tabWidth: 135,
  339.     enableTabScroll: true,
  340.     width: 600,
  341.     height: 250,
  342.     defaults: {autoScroll:true},
  343.     itemTpl: new Ext.XTemplate(
  344.     '&lt;li class="{cls}" id="{id}" style="overflow:hidden">',
  345.          '&lt;tpl if="closable">',
  346.             '&lt;a class="x-tab-strip-close">&lt;/a>',
  347.          '&lt;/tpl>',
  348.          '&lt;a class="x-tab-right" href="#" style="padding-left:6px">',
  349.             '&lt;em class="x-tab-left">',
  350.                 '&lt;span class="x-tab-strip-inner">',
  351.                     '&lt;img src="{src}" style="float:left;margin:3px 3px 0 0">',
  352.                     '&lt;span style="margin-left:20px" class="x-tab-strip-text {iconCls}">{text} {extra}&lt;/span>',
  353.                 '&lt;/span>',
  354.             '&lt;/em>',
  355.         '&lt;/a>',
  356.     '&lt;/li>'
  357.     ),
  358.     getTemplateArgs: function(item) {
  359. //      Call the native method to collect the base data. Like the ID!
  360.         var result = Ext.TabPanel.prototype.getTemplateArgs.call(this, item);
  361. //      Add stuff used in our template
  362.         return Ext.apply(result, {
  363.             closable: item.closable,
  364.             src: item.iconSrc,
  365.             extra: item.extraText || ''
  366.         });
  367.     },
  368.     items: [{
  369.         title: 'New Tab 1',
  370.         iconSrc: '../shared/icons/fam/grid.png',
  371.         html: 'Tab Body 1',
  372.         closable: true
  373.     }, {
  374.         title: 'New Tab 2',
  375.         iconSrc: '../shared/icons/fam/grid.png',
  376.         html: 'Tab Body 2',
  377.         extraText: 'Extra stuff in the tab button'
  378.     }]
  379. });
  380. </code></pre>
  381.          */
  382.         if(!this.itemTpl){
  383.             var tt = new Ext.Template(
  384.                  '<li class="{cls}" id="{id}"><a class="x-tab-strip-close"></a>',
  385.                  '<a class="x-tab-right" href="#"><em class="x-tab-left">',
  386.                  '<span class="x-tab-strip-inner"><span class="x-tab-strip-text {iconCls}">{text}</span></span>',
  387.                  '</em></a></li>'
  388.             );
  389.             tt.disableFormats = true;
  390.             tt.compile();
  391.             Ext.TabPanel.prototype.itemTpl = tt;
  392.         }
  393.         this.items.each(this.initTab, this);
  394.     },
  395.     // private
  396.     afterRender : function(){
  397.         Ext.TabPanel.superclass.afterRender.call(this);
  398.         if(this.autoTabs){
  399.             this.readTabs(false);
  400.         }
  401.         if(this.activeTab !== undefined){
  402.             var item = Ext.isObject(this.activeTab) ? this.activeTab : this.items.get(this.activeTab);
  403.             delete this.activeTab;
  404.             this.setActiveTab(item);
  405.         }
  406.     },
  407.     // private
  408.     initEvents : function(){
  409.         Ext.TabPanel.superclass.initEvents.call(this);
  410.         this.mon(this.strip, {
  411.             scope: this,
  412.             mousedown: this.onStripMouseDown,
  413.             contextmenu: this.onStripContextMenu
  414.         });
  415.         if(this.enableTabScroll){
  416.             this.mon(this.strip, 'mousewheel', this.onWheel, this);
  417.         }
  418.     },
  419.     // private
  420.     findTargets : function(e){
  421.         var item = null;
  422.         var itemEl = e.getTarget('li', this.strip);
  423.         if(itemEl){
  424.             item = this.getComponent(itemEl.id.split(this.idDelimiter)[1]);
  425.             if(item.disabled){
  426.                 return {
  427.                     close : null,
  428.                     item : null,
  429.                     el : null
  430.                 };
  431.             }
  432.         }
  433.         return {
  434.             close : e.getTarget('.x-tab-strip-close', this.strip),
  435.             item : item,
  436.             el : itemEl
  437.         };
  438.     },
  439.     // private
  440.     onStripMouseDown : function(e){
  441.         if(e.button !== 0){
  442.             return;
  443.         }
  444.         e.preventDefault();
  445.         var t = this.findTargets(e);
  446.         if(t.close){
  447.             if (t.item.fireEvent('beforeclose', t.item) !== false) {
  448.                 t.item.fireEvent('close', t.item);
  449.                 this.remove(t.item);
  450.             }
  451.             return;
  452.         }
  453.         if(t.item && t.item != this.activeTab){
  454.             this.setActiveTab(t.item);
  455.         }
  456.     },
  457.     // private
  458.     onStripContextMenu : function(e){
  459.         e.preventDefault();
  460.         var t = this.findTargets(e);
  461.         if(t.item){
  462.             this.fireEvent('contextmenu', this, t.item, e);
  463.         }
  464.     },
  465.     /**
  466.      * True to scan the markup in this tab panel for <tt>{@link #autoTabs}</tt> using the
  467.      * <tt>{@link #autoTabSelector}</tt>
  468.      * @param {Boolean} removeExisting True to remove existing tabs
  469.      */
  470.     readTabs : function(removeExisting){
  471.         if(removeExisting === true){
  472.             this.items.each(function(item){
  473.                 this.remove(item);
  474.             }, this);
  475.         }
  476.         var tabs = this.el.query(this.autoTabSelector);
  477.         for(var i = 0, len = tabs.length; i < len; i++){
  478.             var tab = tabs[i],
  479.                 title = tab.getAttribute('title');
  480.             tab.removeAttribute('title');
  481.             this.add({
  482.                 title: title,
  483.                 contentEl: tab
  484.             });
  485.         }
  486.     },
  487.     // private
  488.     initTab : function(item, index){
  489.         var before = this.strip.dom.childNodes[index],
  490.             p = this.getTemplateArgs(item),
  491.             el = before ?
  492.                  this.itemTpl.insertBefore(before, p) :
  493.                  this.itemTpl.append(this.strip, p),
  494.             cls = 'x-tab-strip-over',
  495.             tabEl = Ext.get(el);
  496.         tabEl.hover(function(){
  497.             if(!item.disabled){
  498.                 tabEl.addClass(cls);
  499.             }
  500.         }, function(){
  501.             tabEl.removeClass(cls);
  502.         });
  503.         if(item.tabTip){
  504.             tabEl.child('span.x-tab-strip-text', true).qtip = item.tabTip;
  505.         }
  506.         item.tabEl = el;
  507.         // Route *keyboard triggered* click events to the tab strip mouse handler.
  508.         tabEl.select('a').on('click', function(e){
  509.             if(!e.getPageX()){
  510.                 this.onStripMouseDown(e);
  511.             }
  512.         }, this, {preventDefault: true});
  513.         item.on({
  514.             scope: this,
  515.             disable: this.onItemDisabled,
  516.             enable: this.onItemEnabled,
  517.             titlechange: this.onItemTitleChanged,
  518.             iconchange: this.onItemIconChanged,
  519.             beforeshow: this.onBeforeShowItem
  520.         });
  521.     },
  522.     
  523.     
  524.     /**
  525.      * <p>Provides template arguments for rendering a tab selector item in the tab strip.</p>
  526.      * <p>This method returns an object hash containing properties used by the TabPanel's <tt>{@link #itemTpl}</tt>
  527.      * to create a formatted, clickable tab selector element. The properties which must be returned
  528.      * are:</p><div class="mdetail-params"><ul>
  529.      * <li><b>id</b> : String<div class="sub-desc">A unique identifier which links to the item</div></li>
  530.      * <li><b>text</b> : String<div class="sub-desc">The text to display</div></li>
  531.      * <li><b>cls</b> : String<div class="sub-desc">The CSS class name</div></li>
  532.      * <li><b>iconCls</b> : String<div class="sub-desc">A CSS class to provide appearance for an icon.</div></li>
  533.      * </ul></div>
  534.      * @param {BoxComponent} item The {@link Ext.BoxComponent BoxComponent} for which to create a selector element in the tab strip.
  535.      * @return {Object} An object hash containing the properties required to render the selector element.
  536.      */
  537.     getTemplateArgs : function(item) {
  538.         var cls = item.closable ? 'x-tab-strip-closable' : '';
  539.         if(item.disabled){
  540.             cls += ' x-item-disabled';
  541.         }
  542.         if(item.iconCls){
  543.             cls += ' x-tab-with-icon';
  544.         }
  545.         if(item.tabCls){
  546.             cls += ' ' + item.tabCls;
  547.         }
  548.         return {
  549.             id: this.id + this.idDelimiter + item.getItemId(),
  550.             text: item.title,
  551.             cls: cls,
  552.             iconCls: item.iconCls || ''
  553.         };
  554.     },
  555.     // private
  556.     onAdd : function(c){
  557.         Ext.TabPanel.superclass.onAdd.call(this, c);
  558.         if(this.rendered){
  559.             var items = this.items;
  560.             this.initTab(c, items.indexOf(c));
  561.             if(items.getCount() == 1){
  562.                 this.syncSize();
  563.             }
  564.             this.delegateUpdates();
  565.         }
  566.     },
  567.     // private
  568.     onBeforeAdd : function(item){
  569.         var existing = item.events ? (this.items.containsKey(item.getItemId()) ? item : null) : this.items.get(item);
  570.         if(existing){
  571.             this.setActiveTab(item);
  572.             return false;
  573.         }
  574.         Ext.TabPanel.superclass.onBeforeAdd.apply(this, arguments);
  575.         var es = item.elements;
  576.         item.elements = es ? es.replace(',header', '') : es;
  577.         item.border = (item.border === true);
  578.     },
  579.     // private
  580.     onRemove : function(c){
  581.         var te = Ext.get(c.tabEl);
  582.         // check if the tabEl exists, it won't if the tab isn't rendered
  583.         if(te){
  584.             te.select('a').removeAllListeners();
  585.             Ext.destroy(te);
  586.         }
  587.         Ext.TabPanel.superclass.onRemove.call(this, c);
  588.         this.stack.remove(c);
  589.         delete c.tabEl;
  590.         c.un('disable', this.onItemDisabled, this);
  591.         c.un('enable', this.onItemEnabled, this);
  592.         c.un('titlechange', this.onItemTitleChanged, this);
  593.         c.un('iconchange', this.onItemIconChanged, this);
  594.         c.un('beforeshow', this.onBeforeShowItem, this);
  595.         if(c == this.activeTab){
  596.             var next = this.stack.next();
  597.             if(next){
  598.                 this.setActiveTab(next);
  599.             }else if(this.items.getCount() > 0){
  600.                 this.setActiveTab(0);
  601.             }else{
  602.                 this.setActiveTab(null);
  603.             }
  604.         }
  605.         if(!this.destroying){
  606.             this.delegateUpdates();
  607.         }
  608.     },
  609.     // private
  610.     onBeforeShowItem : function(item){
  611.         if(item != this.activeTab){
  612.             this.setActiveTab(item);
  613.             return false;
  614.         }
  615.     },
  616.     // private
  617.     onItemDisabled : function(item){
  618.         var el = this.getTabEl(item);
  619.         if(el){
  620.             Ext.fly(el).addClass('x-item-disabled');
  621.         }
  622.         this.stack.remove(item);
  623.     },
  624.     // private
  625.     onItemEnabled : function(item){
  626.         var el = this.getTabEl(item);
  627.         if(el){
  628.             Ext.fly(el).removeClass('x-item-disabled');
  629.         }
  630.     },
  631.     // private
  632.     onItemTitleChanged : function(item){
  633.         var el = this.getTabEl(item);
  634.         if(el){
  635.             Ext.fly(el).child('span.x-tab-strip-text', true).innerHTML = item.title;
  636.         }
  637.     },
  638.     //private
  639.     onItemIconChanged : function(item, iconCls, oldCls){
  640.         var el = this.getTabEl(item);
  641.         if(el){
  642.             el = Ext.get(el);
  643.             el.child('span.x-tab-strip-text').replaceClass(oldCls, iconCls);
  644.             el[Ext.isEmpty(iconCls) ? 'removeClass' : 'addClass']('x-tab-with-icon');
  645.         }
  646.     },
  647.     /**
  648.      * Gets the DOM element for the tab strip item which activates the child panel with the specified
  649.      * ID. Access this to change the visual treatment of the item, for example by changing the CSS class name.
  650.      * @param {Panel/Number/String} tab The tab component, or the tab's index, or the tabs id or itemId.
  651.      * @return {HTMLElement} The DOM node
  652.      */
  653.     getTabEl : function(item){
  654.         var c = this.getComponent(item);
  655.         return c ? c.tabEl : null;
  656.     },
  657.     // private
  658.     onResize : function(){
  659.         Ext.TabPanel.superclass.onResize.apply(this, arguments);
  660.         this.delegateUpdates();
  661.     },
  662.     /**
  663.      * Suspends any internal calculations or scrolling while doing a bulk operation. See {@link #endUpdate}
  664.      */
  665.     beginUpdate : function(){
  666.         this.suspendUpdates = true;
  667.     },
  668.     /**
  669.      * Resumes calculations and scrolling at the end of a bulk operation. See {@link #beginUpdate}
  670.      */
  671.     endUpdate : function(){
  672.         this.suspendUpdates = false;
  673.         this.delegateUpdates();
  674.     },
  675.     /**
  676.      * Hides the tab strip item for the passed tab
  677.      * @param {Number/String/Panel} item The tab index, id or item
  678.      */
  679.     hideTabStripItem : function(item){
  680.         item = this.getComponent(item);
  681.         var el = this.getTabEl(item);
  682.         if(el){
  683.             el.style.display = 'none';
  684.             this.delegateUpdates();
  685.         }
  686.         this.stack.remove(item);
  687.     },
  688.     /**
  689.      * Unhides the tab strip item for the passed tab
  690.      * @param {Number/String/Panel} item The tab index, id or item
  691.      */
  692.     unhideTabStripItem : function(item){
  693.         item = this.getComponent(item);
  694.         var el = this.getTabEl(item);
  695.         if(el){
  696.             el.style.display = '';
  697.             this.delegateUpdates();
  698.         }
  699.     },
  700.     // private
  701.     delegateUpdates : function(){
  702.         if(this.suspendUpdates){
  703.             return;
  704.         }
  705.         if(this.resizeTabs && this.rendered){
  706.             this.autoSizeTabs();
  707.         }
  708.         if(this.enableTabScroll && this.rendered){
  709.             this.autoScrollTabs();
  710.         }
  711.     },
  712.     // private
  713.     autoSizeTabs : function(){
  714.         var count = this.items.length,
  715.             ce = this.tabPosition != 'bottom' ? 'header' : 'footer',
  716.             ow = this[ce].dom.offsetWidth,
  717.             aw = this[ce].dom.clientWidth;
  718.         if(!this.resizeTabs || count < 1 || !aw){ // !aw for display:none
  719.             return;
  720.         }
  721.         var each = Math.max(Math.min(Math.floor((aw-4) / count) - this.tabMargin, this.tabWidth), this.minTabWidth); // -4 for float errors in IE
  722.         this.lastTabWidth = each;
  723.         var lis = this.strip.query("li:not([className^=x-tab-edge])");
  724.         for(var i = 0, len = lis.length; i < len; i++) {
  725.             var li = lis[i],
  726.                 inner = Ext.fly(li).child('.x-tab-strip-inner', true),
  727.                 tw = li.offsetWidth,
  728.                 iw = inner.offsetWidth;
  729.             inner.style.width = (each - (tw-iw)) + 'px';
  730.         }
  731.     },
  732.     // private
  733.     adjustBodyWidth : function(w){
  734.         if(this.header){
  735.             this.header.setWidth(w);
  736.         }
  737.         if(this.footer){
  738.             this.footer.setWidth(w);
  739.         }
  740.         return w;
  741.     },
  742.     /**
  743.      * Sets the specified tab as the active tab. This method fires the {@link #beforetabchange} event which
  744.      * can <tt>return false</tt> to cancel the tab change.
  745.      * @param {String/Number} item
  746.      * The id or tab Panel to activate. This parameter may be any of the following:
  747.      * <div><ul class="mdetail-params">
  748.      * <li>a <b><tt>String</tt></b> : representing the <code>{@link Ext.Component#itemId itemId}</code>
  749.      * or <code>{@link Ext.Component#id id}</code> of the child component </li>
  750.      * <li>a <b><tt>Number</tt></b> : representing the position of the child component
  751.      * within the <code>{@link Ext.Container#items items}</code> <b>property</b></li>
  752.      * </ul></div>
  753.      * <p>For additional information see {@link Ext.util.MixedCollection#get}.
  754.      */
  755.     setActiveTab : function(item){
  756.         item = this.getComponent(item);
  757.         if(this.fireEvent('beforetabchange', this, item, this.activeTab) === false){
  758.             return;
  759.         }
  760.         if(!this.rendered){
  761.             this.activeTab = item;
  762.             return;
  763.         }
  764.         if(this.activeTab != item){
  765.             if(this.activeTab){
  766.                 var oldEl = this.getTabEl(this.activeTab);
  767.                 if(oldEl){
  768.                     Ext.fly(oldEl).removeClass('x-tab-strip-active');
  769.                 }
  770.             }
  771.             if(item){
  772.                 var el = this.getTabEl(item);
  773.                 Ext.fly(el).addClass('x-tab-strip-active');
  774.                 this.activeTab = item;
  775.                 this.stack.add(item);
  776.                 this.layout.setActiveItem(item);
  777.                 if(this.scrolling){
  778.                     this.scrollToTab(item, this.animScroll);
  779.                 }
  780.             }
  781.             this.fireEvent('tabchange', this, item);
  782.         }
  783.     },
  784.     /**
  785.      * Returns the Component which is the currently active tab. <b>Note that before the TabPanel
  786.      * first activates a child Component, this method will return whatever was configured in the
  787.      * {@link #activeTab} config option.</b>
  788.      * @return {BoxComponent} The currently active child Component if one <i>is</i> active, or the {@link #activeTab} config value.
  789.      */
  790.     getActiveTab : function(){
  791.         return this.activeTab || null;
  792.     },
  793.     /**
  794.      * Gets the specified tab by id.
  795.      * @param {String} id The tab id
  796.      * @return {Panel} The tab
  797.      */
  798.     getItem : function(item){
  799.         return this.getComponent(item);
  800.     },
  801.     // private
  802.     autoScrollTabs : function(){
  803.         this.pos = this.tabPosition=='bottom' ? this.footer : this.header;
  804.         var count = this.items.length,
  805.             ow = this.pos.dom.offsetWidth,
  806.             tw = this.pos.dom.clientWidth,
  807.             wrap = this.stripWrap,
  808.             wd = wrap.dom,
  809.             cw = wd.offsetWidth,
  810.             pos = this.getScrollPos(),
  811.             l = this.edge.getOffsetsTo(this.stripWrap)[0] + pos;
  812.         if(!this.enableTabScroll || count < 1 || cw < 20){ // 20 to prevent display:none issues
  813.             return;
  814.         }
  815.         if(l <= tw){
  816.             wd.scrollLeft = 0;
  817.             wrap.setWidth(tw);
  818.             if(this.scrolling){
  819.                 this.scrolling = false;
  820.                 this.pos.removeClass('x-tab-scrolling');
  821.                 this.scrollLeft.hide();
  822.                 this.scrollRight.hide();
  823.                 // See here: http://extjs.com/forum/showthread.php?t=49308&highlight=isSafari
  824.                 if(Ext.isAir || Ext.isWebKit){
  825.                     wd.style.marginLeft = '';
  826.                     wd.style.marginRight = '';
  827.                 }
  828.             }
  829.         }else{
  830.             if(!this.scrolling){
  831.                 this.pos.addClass('x-tab-scrolling');
  832.                 // See here: http://extjs.com/forum/showthread.php?t=49308&highlight=isSafari
  833.                 if(Ext.isAir || Ext.isWebKit){
  834.                     wd.style.marginLeft = '18px';
  835.                     wd.style.marginRight = '18px';
  836.                 }
  837.             }
  838.             tw -= wrap.getMargins('lr');
  839.             wrap.setWidth(tw > 20 ? tw : 20);
  840.             if(!this.scrolling){
  841.                 if(!this.scrollLeft){
  842.                     this.createScrollers();
  843.                 }else{
  844.                     this.scrollLeft.show();
  845.                     this.scrollRight.show();
  846.                 }
  847.             }
  848.             this.scrolling = true;
  849.             if(pos > (l-tw)){ // ensure it stays within bounds
  850.                 wd.scrollLeft = l-tw;
  851.             }else{ // otherwise, make sure the active tab is still visible
  852.                 this.scrollToTab(this.activeTab, false);
  853.             }
  854.             this.updateScrollButtons();
  855.         }
  856.     },
  857.     // private
  858.     createScrollers : function(){
  859.         this.pos.addClass('x-tab-scrolling-' + this.tabPosition);
  860.         var h = this.stripWrap.dom.offsetHeight;
  861.         // left
  862.         var sl = this.pos.insertFirst({
  863.             cls:'x-tab-scroller-left'
  864.         });
  865.         sl.setHeight(h);
  866.         sl.addClassOnOver('x-tab-scroller-left-over');
  867.         this.leftRepeater = new Ext.util.ClickRepeater(sl, {
  868.             interval : this.scrollRepeatInterval,
  869.             handler: this.onScrollLeft,
  870.             scope: this
  871.         });
  872.         this.scrollLeft = sl;
  873.         // right
  874.         var sr = this.pos.insertFirst({
  875.             cls:'x-tab-scroller-right'
  876.         });
  877.         sr.setHeight(h);
  878.         sr.addClassOnOver('x-tab-scroller-right-over');
  879.         this.rightRepeater = new Ext.util.ClickRepeater(sr, {
  880.             interval : this.scrollRepeatInterval,
  881.             handler: this.onScrollRight,
  882.             scope: this
  883.         });
  884.         this.scrollRight = sr;
  885.     },
  886.     // private
  887.     getScrollWidth : function(){
  888.         return this.edge.getOffsetsTo(this.stripWrap)[0] + this.getScrollPos();
  889.     },
  890.     // private
  891.     getScrollPos : function(){
  892.         return parseInt(this.stripWrap.dom.scrollLeft, 10) || 0;
  893.     },
  894.     // private
  895.     getScrollArea : function(){
  896.         return parseInt(this.stripWrap.dom.clientWidth, 10) || 0;
  897.     },
  898.     // private
  899.     getScrollAnim : function(){
  900.         return {duration:this.scrollDuration, callback: this.updateScrollButtons, scope: this};
  901.     },
  902.     // private
  903.     getScrollIncrement : function(){
  904.         return this.scrollIncrement || (this.resizeTabs ? this.lastTabWidth+2 : 100);
  905.     },
  906.     /**
  907.      * Scrolls to a particular tab if tab scrolling is enabled
  908.      * @param {Panel} item The item to scroll to
  909.      * @param {Boolean} animate True to enable animations
  910.      */
  911.     scrollToTab : function(item, animate){
  912.         if(!item){ 
  913.             return; 
  914.         }
  915.         var el = this.getTabEl(item),
  916.             pos = this.getScrollPos(), 
  917.             area = this.getScrollArea(),
  918.             left = Ext.fly(el).getOffsetsTo(this.stripWrap)[0] + pos,
  919.             right = left + el.offsetWidth;
  920.         if(left < pos){
  921.             this.scrollTo(left, animate);
  922.         }else if(right > (pos + area)){
  923.             this.scrollTo(right - area, animate);
  924.         }
  925.     },
  926.     // private
  927.     scrollTo : function(pos, animate){
  928.         this.stripWrap.scrollTo('left', pos, animate ? this.getScrollAnim() : false);
  929.         if(!animate){
  930.             this.updateScrollButtons();
  931.         }
  932.     },
  933.     onWheel : function(e){
  934.         var d = e.getWheelDelta()*this.wheelIncrement*-1;
  935.         e.stopEvent();
  936.         var pos = this.getScrollPos(),
  937.             newpos = pos + d,
  938.             sw = this.getScrollWidth()-this.getScrollArea();
  939.         var s = Math.max(0, Math.min(sw, newpos));
  940.         if(s != pos){
  941.             this.scrollTo(s, false);
  942.         }
  943.     },
  944.     // private
  945.     onScrollRight : function(){
  946.         var sw = this.getScrollWidth()-this.getScrollArea(),
  947.             pos = this.getScrollPos(),
  948.             s = Math.min(sw, pos + this.getScrollIncrement());
  949.         if(s != pos){
  950.             this.scrollTo(s, this.animScroll);
  951.         }
  952.     },
  953.     // private
  954.     onScrollLeft : function(){
  955.         var pos = this.getScrollPos(),
  956.             s = Math.max(0, pos - this.getScrollIncrement());
  957.         if(s != pos){
  958.             this.scrollTo(s, this.animScroll);
  959.         }
  960.     },
  961.     // private
  962.     updateScrollButtons : function(){
  963.         var pos = this.getScrollPos();
  964.         this.scrollLeft[pos === 0 ? 'addClass' : 'removeClass']('x-tab-scroller-left-disabled');
  965.         this.scrollRight[pos >= (this.getScrollWidth()-this.getScrollArea()) ? 'addClass' : 'removeClass']('x-tab-scroller-right-disabled');
  966.     },
  967.     // private
  968.     beforeDestroy : function() {
  969.         Ext.destroy(this.leftRepeater, this.rightRepeater);
  970.         this.deleteMembers('strip', 'edge', 'scrollLeft', 'scrollRight', 'stripWrap');
  971.         this.activeTab = null;
  972.         Ext.TabPanel.superclass.beforeDestroy.apply(this);
  973.     }
  974.     /**
  975.      * @cfg {Boolean} collapsible
  976.      * @hide
  977.      */
  978.     /**
  979.      * @cfg {String} header
  980.      * @hide
  981.      */
  982.     /**
  983.      * @cfg {Boolean} headerAsText
  984.      * @hide
  985.      */
  986.     /**
  987.      * @property header
  988.      * @hide
  989.      */
  990.     /**
  991.      * @cfg title
  992.      * @hide
  993.      */
  994.     /**
  995.      * @cfg {Array} tools
  996.      * @hide
  997.      */
  998.     /**
  999.      * @cfg {Array} toolTemplate
  1000.      * @hide
  1001.      */
  1002.     /**
  1003.      * @cfg {Boolean} hideCollapseTool
  1004.      * @hide
  1005.      */
  1006.     /**
  1007.      * @cfg {Boolean} titleCollapse
  1008.      * @hide
  1009.      */
  1010.     /**
  1011.      * @cfg {Boolean} collapsed
  1012.      * @hide
  1013.      */
  1014.     /**
  1015.      * @cfg {String} layout
  1016.      * @hide
  1017.      */
  1018.     /**
  1019.      * @cfg {Boolean} preventBodyReset
  1020.      * @hide
  1021.      */
  1022. });
  1023. Ext.reg('tabpanel', Ext.TabPanel);
  1024. /**
  1025.  * See {@link #setActiveTab}. Sets the specified tab as the active tab. This method fires
  1026.  * the {@link #beforetabchange} event which can <tt>return false</tt> to cancel the tab change.
  1027.  * @param {String/Panel} tab The id or tab Panel to activate
  1028.  * @method activate
  1029.  */
  1030. Ext.TabPanel.prototype.activate = Ext.TabPanel.prototype.setActiveTab;
  1031. // private utility class used by TabPanel
  1032. Ext.TabPanel.AccessStack = function(){
  1033.     var items = [];
  1034.     return {
  1035.         add : function(item){
  1036.             items.push(item);
  1037.             if(items.length > 10){
  1038.                 items.shift();
  1039.             }
  1040.         },
  1041.         remove : function(item){
  1042.             var s = [];
  1043.             for(var i = 0, len = items.length; i < len; i++) {
  1044.                 if(items[i] != item){
  1045.                     s.push(items[i]);
  1046.                 }
  1047.             }
  1048.             items = s;
  1049.         },
  1050.         next : function(){
  1051.             return items.pop();
  1052.         }
  1053.     };
  1054. };