TabPanel.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:39k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.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 none).
  221.      */
  222.     activeTab : null,
  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.         this.stripSpacer = st.createChild({cls:'x-tab-strip-spacer'}, beforeEl);
  316.         this.strip = new Ext.Element(this.stripWrap.dom.firstChild);
  317.         this.edge = this.strip.createChild({tag:'li', cls:'x-tab-edge'});
  318.         this.strip.createChild({cls:'x-clear'});
  319.         this.body.addClass('x-tab-panel-body-'+this.tabPosition);
  320.         /**
  321.          * @cfg {Template/XTemplate} itemTpl <p>(Optional) A {@link Ext.Template Template} or
  322.          * {@link Ext.XTemplate XTemplate} which may be provided to process the data object returned from
  323.          * <tt>{@link #getTemplateArgs}</tt> to produce a clickable selector element in the tab strip.</p>
  324.          * <p>The main element created should be a <tt>&lt;li></tt> element. In order for a click event on
  325.          * a selector element to be connected to its item, it must take its <i>id</i> from the TabPanel's
  326.          * native <tt>{@link #getTemplateArgs}</tt>.</p>
  327.          * <p>The child element which contains the title text must be marked by the CSS class
  328.          * <tt>x-tab-strip-inner</tt>.</p>
  329.          * <p>To enable closability, the created element should contain an element marked by the CSS class
  330.          * <tt>x-tab-strip-close</tt>.</p>
  331.          * <p>If a custom <tt>itemTpl</tt> is supplied, it is the developer's responsibility to create CSS
  332.          * style rules to create the desired appearance.</p>
  333.          * Below is an example of how to create customized tab selector items:<pre><code>
  334. new Ext.TabPanel({
  335.     renderTo: document.body,
  336.     minTabWidth: 115,
  337.     tabWidth: 135,
  338.     enableTabScroll: true,
  339.     width: 600,
  340.     height: 250,
  341.     defaults: {autoScroll:true},
  342.     itemTpl: new Ext.XTemplate(
  343.     '&lt;li class="{cls}" id="{id}" style="overflow:hidden">',
  344.          '&lt;tpl if="closable">',
  345.             '&lt;a class="x-tab-strip-close" onclick="return false;">&lt;/a>',
  346.          '&lt;/tpl>',
  347.          '&lt;a class="x-tab-right" href="#" onclick="return false;" style="padding-left:6px">',
  348.             '&lt;em class="x-tab-left">',
  349.                 '&lt;span class="x-tab-strip-inner">',
  350.                     '&lt;img src="{src}" style="float:left;margin:3px 3px 0 0">',
  351.                     '&lt;span style="margin-left:20px" class="x-tab-strip-text {iconCls}">{text} {extra}&lt;/span>',
  352.                 '&lt;/span>',
  353.             '&lt;/em>',
  354.         '&lt;/a>',
  355.     '&lt;/li>'
  356.     ),
  357.     getTemplateArgs: function(item) {
  358. //      Call the native method to collect the base data. Like the ID!
  359.         var result = Ext.TabPanel.prototype.getTemplateArgs.call(this, item);
  360. //      Add stuff used in our template
  361.         return Ext.apply(result, {
  362.             closable: item.closable,
  363.             src: item.iconSrc,
  364.             extra: item.extraText || ''
  365.         });
  366.     },
  367.     items: [{
  368.         title: 'New Tab 1',
  369.         iconSrc: '../shared/icons/fam/grid.png',
  370.         html: 'Tab Body 1',
  371.         closable: true
  372.     }, {
  373.         title: 'New Tab 2',
  374.         iconSrc: '../shared/icons/fam/grid.png',
  375.         html: 'Tab Body 2',
  376.         extraText: 'Extra stuff in the tab button'
  377.     }]
  378. });
  379. </code></pre>
  380.          */
  381.         if(!this.itemTpl){
  382.             var tt = new Ext.Template(
  383.                  '<li class="{cls}" id="{id}"><a class="x-tab-strip-close" onclick="return false;"></a>',
  384.                  '<a class="x-tab-right" href="#" onclick="return false;"><em class="x-tab-left">',
  385.                  '<span class="x-tab-strip-inner"><span class="x-tab-strip-text {iconCls}">{text}</span></span>',
  386.                  '</em></a></li>'
  387.             );
  388.             tt.disableFormats = true;
  389.             tt.compile();
  390.             Ext.TabPanel.prototype.itemTpl = tt;
  391.         }
  392.         this.items.each(this.initTab, this);
  393.     },
  394.     // private
  395.     afterRender : function(){
  396.         Ext.TabPanel.superclass.afterRender.call(this);
  397.         if(this.autoTabs){
  398.             this.readTabs(false);
  399.         }
  400.         if(this.activeTab !== undefined){
  401.             var item = Ext.isObject(this.activeTab) ? this.activeTab : this.items.get(this.activeTab);
  402.             delete this.activeTab;
  403.             this.setActiveTab(item);
  404.         }
  405.     },
  406.     // private
  407.     initEvents : function(){
  408.         Ext.TabPanel.superclass.initEvents.call(this);
  409.         this.on('add', this.onAdd, this, {target: this});
  410.         this.on('remove', this.onRemove, this, {target: this});
  411.         this.mon(this.strip, 'mousedown', this.onStripMouseDown, this);
  412.         this.mon(this.strip, 'contextmenu', this.onStripContextMenu, this);
  413.         if(this.enableTabScroll){
  414.             this.mon(this.strip, 'mousewheel', this.onWheel, this);
  415.         }
  416.     },
  417.     // private
  418.     findTargets : function(e){
  419.         var item = null;
  420.         var itemEl = e.getTarget('li', this.strip);
  421.         if(itemEl){
  422.             item = this.getComponent(itemEl.id.split(this.idDelimiter)[1]);
  423.             if(item.disabled){
  424.                 return {
  425.                     close : null,
  426.                     item : null,
  427.                     el : null
  428.                 };
  429.             }
  430.         }
  431.         return {
  432.             close : e.getTarget('.x-tab-strip-close', this.strip),
  433.             item : item,
  434.             el : itemEl
  435.         };
  436.     },
  437.     // private
  438.     onStripMouseDown : function(e){
  439.         if(e.button !== 0){
  440.             return;
  441.         }
  442.         e.preventDefault();
  443.         var t = this.findTargets(e);
  444.         if(t.close){
  445.             if (t.item.fireEvent('beforeclose', t.item) !== false) {
  446.                 t.item.fireEvent('close', t.item);
  447.                 this.remove(t.item);
  448.             }
  449.             return;
  450.         }
  451.         if(t.item && t.item != this.activeTab){
  452.             this.setActiveTab(t.item);
  453.         }
  454.     },
  455.     // private
  456.     onStripContextMenu : function(e){
  457.         e.preventDefault();
  458.         var t = this.findTargets(e);
  459.         if(t.item){
  460.             this.fireEvent('contextmenu', this, t.item, e);
  461.         }
  462.     },
  463.     /**
  464.      * True to scan the markup in this tab panel for <tt>{@link #autoTabs}</tt> using the
  465.      * <tt>{@link #autoTabSelector}</tt>
  466.      * @param {Boolean} removeExisting True to remove existing tabs
  467.      */
  468.     readTabs : function(removeExisting){
  469.         if(removeExisting === true){
  470.             this.items.each(function(item){
  471.                 this.remove(item);
  472.             }, this);
  473.         }
  474.         var tabs = this.el.query(this.autoTabSelector);
  475.         for(var i = 0, len = tabs.length; i < len; i++){
  476.             var tab = tabs[i];
  477.             var title = tab.getAttribute('title');
  478.             tab.removeAttribute('title');
  479.             this.add({
  480.                 title: title,
  481.                 contentEl: tab
  482.             });
  483.         }
  484.     },
  485.     // private
  486.     initTab : function(item, index){
  487.         var before = this.strip.dom.childNodes[index];
  488.         var p = this.getTemplateArgs(item);
  489.         var el = before ?
  490.                  this.itemTpl.insertBefore(before, p) :
  491.                  this.itemTpl.append(this.strip, p);
  492.         Ext.fly(el).addClassOnOver('x-tab-strip-over');
  493.         if(item.tabTip){
  494.             Ext.fly(el).child('span.x-tab-strip-text', true).qtip = item.tabTip;
  495.         }
  496.         item.tabEl = el;
  497.         item.on('disable', this.onItemDisabled, this);
  498.         item.on('enable', this.onItemEnabled, this);
  499.         item.on('titlechange', this.onItemTitleChanged, this);
  500.         item.on('iconchange', this.onItemIconChanged, this);
  501.         item.on('beforeshow', this.onBeforeShowItem, this);
  502.     },
  503.     /**
  504.      * <p>Provides template arguments for rendering a tab selector item in the tab strip.</p>
  505.      * <p>This method returns an object hash containing properties used by the TabPanel's <tt>{@link #itemTpl}</tt>
  506.      * to create a formatted, clickable tab selector element. The properties which must be returned
  507.      * are:</p><div class="mdetail-params"><ul>
  508.      * <li><b>id</b> : String<div class="sub-desc">A unique identifier which links to the item</div></li>
  509.      * <li><b>text</b> : String<div class="sub-desc">The text to display</div></li>
  510.      * <li><b>cls</b> : String<div class="sub-desc">The CSS class name</div></li>
  511.      * <li><b>iconCls</b> : String<div class="sub-desc">A CSS class to provide appearance for an icon.</div></li>
  512.      * </ul></div>
  513.      * @param {BoxComponent} item The {@link Ext.BoxComponent BoxComponent} for which to create a selector element in the tab strip.
  514.      * @return {Object} An object hash containing the properties required to render the selector element.
  515.      */
  516.     getTemplateArgs : function(item) {
  517.         var cls = item.closable ? 'x-tab-strip-closable' : '';
  518.         if(item.disabled){
  519.             cls += ' x-item-disabled';
  520.         }
  521.         if(item.iconCls){
  522.             cls += ' x-tab-with-icon';
  523.         }
  524.         if(item.tabCls){
  525.             cls += ' ' + item.tabCls;
  526.         }
  527.         return {
  528.             id: this.id + this.idDelimiter + item.getItemId(),
  529.             text: item.title,
  530.             cls: cls,
  531.             iconCls: item.iconCls || ''
  532.         };
  533.     },
  534.     // private
  535.     onAdd : function(tp, item, index){
  536.         this.initTab(item, index);
  537.         if(this.items.getCount() == 1){
  538.             this.syncSize();
  539.         }
  540.         this.delegateUpdates();
  541.     },
  542.     // private
  543.     onBeforeAdd : function(item){
  544.         var existing = item.events ? (this.items.containsKey(item.getItemId()) ? item : null) : this.items.get(item);
  545.         if(existing){
  546.             this.setActiveTab(item);
  547.             return false;
  548.         }
  549.         Ext.TabPanel.superclass.onBeforeAdd.apply(this, arguments);
  550.         var es = item.elements;
  551.         item.elements = es ? es.replace(',header', '') : es;
  552.         item.border = (item.border === true);
  553.     },
  554.     // private
  555.     onRemove : function(tp, item){
  556.         Ext.destroy(Ext.get(this.getTabEl(item)));
  557.         this.stack.remove(item);
  558.         item.un('disable', this.onItemDisabled, this);
  559.         item.un('enable', this.onItemEnabled, this);
  560.         item.un('titlechange', this.onItemTitleChanged, this);
  561.         item.un('iconchange', this.onItemIconChanged, this);
  562.         item.un('beforeshow', this.onBeforeShowItem, this);
  563.         if(item == this.activeTab){
  564.             var next = this.stack.next();
  565.             if(next){
  566.                 this.setActiveTab(next);
  567.             }else if(this.items.getCount() > 0){
  568.                 this.setActiveTab(0);
  569.             }else{
  570.                 this.activeTab = null;
  571.             }
  572.         }
  573.         this.delegateUpdates();
  574.     },
  575.     // private
  576.     onBeforeShowItem : function(item){
  577.         if(item != this.activeTab){
  578.             this.setActiveTab(item);
  579.             return false;
  580.         }
  581.     },
  582.     // private
  583.     onItemDisabled : function(item){
  584.         var el = this.getTabEl(item);
  585.         if(el){
  586.             Ext.fly(el).addClass('x-item-disabled');
  587.         }
  588.         this.stack.remove(item);
  589.     },
  590.     // private
  591.     onItemEnabled : function(item){
  592.         var el = this.getTabEl(item);
  593.         if(el){
  594.             Ext.fly(el).removeClass('x-item-disabled');
  595.         }
  596.     },
  597.     // private
  598.     onItemTitleChanged : function(item){
  599.         var el = this.getTabEl(item);
  600.         if(el){
  601.             Ext.fly(el).child('span.x-tab-strip-text', true).innerHTML = item.title;
  602.         }
  603.     },
  604.     //private
  605.     onItemIconChanged : function(item, iconCls, oldCls){
  606.         var el = this.getTabEl(item);
  607.         if(el){
  608.             Ext.fly(el).child('span.x-tab-strip-text').replaceClass(oldCls, iconCls);
  609.         }
  610.     },
  611.     /**
  612.      * Gets the DOM element for the tab strip item which activates the child panel with the specified
  613.      * ID. Access this to change the visual treatment of the item, for example by changing the CSS class name.
  614.      * @param {Panel/Number/String} tab The tab component, or the tab's index, or the tabs id or itemId.
  615.      * @return {HTMLElement} The DOM node
  616.      */
  617.     getTabEl : function(item){
  618.         return document.getElementById(this.id + this.idDelimiter + this.getComponent(item).getItemId());
  619.     },
  620.     // private
  621.     onResize : function(){
  622.         Ext.TabPanel.superclass.onResize.apply(this, arguments);
  623.         this.delegateUpdates();
  624.     },
  625.     /**
  626.      * Suspends any internal calculations or scrolling while doing a bulk operation. See {@link #endUpdate}
  627.      */
  628.     beginUpdate : function(){
  629.         this.suspendUpdates = true;
  630.     },
  631.     /**
  632.      * Resumes calculations and scrolling at the end of a bulk operation. See {@link #beginUpdate}
  633.      */
  634.     endUpdate : function(){
  635.         this.suspendUpdates = false;
  636.         this.delegateUpdates();
  637.     },
  638.     /**
  639.      * Hides the tab strip item for the passed tab
  640.      * @param {Number/String/Panel} item The tab index, id or item
  641.      */
  642.     hideTabStripItem : function(item){
  643.         item = this.getComponent(item);
  644.         var el = this.getTabEl(item);
  645.         if(el){
  646.             el.style.display = 'none';
  647.             this.delegateUpdates();
  648.         }
  649.         this.stack.remove(item);
  650.     },
  651.     /**
  652.      * Unhides the tab strip item for the passed tab
  653.      * @param {Number/String/Panel} item The tab index, id or item
  654.      */
  655.     unhideTabStripItem : function(item){
  656.         item = this.getComponent(item);
  657.         var el = this.getTabEl(item);
  658.         if(el){
  659.             el.style.display = '';
  660.             this.delegateUpdates();
  661.         }
  662.     },
  663.     // private
  664.     delegateUpdates : function(){
  665.         if(this.suspendUpdates){
  666.             return;
  667.         }
  668.         if(this.resizeTabs && this.rendered){
  669.             this.autoSizeTabs();
  670.         }
  671.         if(this.enableTabScroll && this.rendered){
  672.             this.autoScrollTabs();
  673.         }
  674.     },
  675.     // private
  676.     autoSizeTabs : function(){
  677.         var count = this.items.length;
  678.         var ce = this.tabPosition != 'bottom' ? 'header' : 'footer';
  679.         var ow = this[ce].dom.offsetWidth;
  680.         var aw = this[ce].dom.clientWidth;
  681.         if(!this.resizeTabs || count < 1 || !aw){ // !aw for display:none
  682.             return;
  683.         }
  684.         var each = Math.max(Math.min(Math.floor((aw-4) / count) - this.tabMargin, this.tabWidth), this.minTabWidth); // -4 for float errors in IE
  685.         this.lastTabWidth = each;
  686.         var lis = this.strip.query("li:not([className^=x-tab-edge])");
  687.         for(var i = 0, len = lis.length; i < len; i++) {
  688.             var li = lis[i];
  689.             var inner = Ext.fly(li).child('.x-tab-strip-inner', true);
  690.             var tw = li.offsetWidth;
  691.             var iw = inner.offsetWidth;
  692.             inner.style.width = (each - (tw-iw)) + 'px';
  693.         }
  694.     },
  695.     // private
  696.     adjustBodyWidth : function(w){
  697.         if(this.header){
  698.             this.header.setWidth(w);
  699.         }
  700.         if(this.footer){
  701.             this.footer.setWidth(w);
  702.         }
  703.         return w;
  704.     },
  705.     /**
  706.      * Sets the specified tab as the active tab. This method fires the {@link #beforetabchange} event which
  707.      * can <tt>return false</tt> to cancel the tab change.
  708.      * @param {String/Number} item
  709.      * The id or tab Panel to activate. This parameter may be any of the following:
  710.      * <div><ul class="mdetail-params">
  711.      * <li>a <b><tt>String</tt></b> : representing the <code>{@link Ext.Component#itemId itemId}</code>
  712.      * or <code>{@link Ext.Component#id id}</code> of the child component </li>
  713.      * <li>a <b><tt>Number</tt></b> : representing the position of the child component
  714.      * within the <code>{@link Ext.Container#items items}</code> <b>property</b></li>
  715.      * </ul></div>
  716.      * <p>For additional information see {@link Ext.util.MixedCollection#get}.
  717.      */
  718.     setActiveTab : function(item){
  719.         item = this.getComponent(item);
  720.         if(!item || this.fireEvent('beforetabchange', this, item, this.activeTab) === false){
  721.             return;
  722.         }
  723.         if(!this.rendered){
  724.             this.activeTab = item;
  725.             return;
  726.         }
  727.         if(this.activeTab != item){
  728.             if(this.activeTab){
  729.                 var oldEl = this.getTabEl(this.activeTab);
  730.                 if(oldEl){
  731.                     Ext.fly(oldEl).removeClass('x-tab-strip-active');
  732.                 }
  733.                 this.activeTab.fireEvent('deactivate', this.activeTab);
  734.             }
  735.             var el = this.getTabEl(item);
  736.             Ext.fly(el).addClass('x-tab-strip-active');
  737.             this.activeTab = item;
  738.             this.stack.add(item);
  739.             this.layout.setActiveItem(item);
  740.             if(this.scrolling){
  741.                 this.scrollToTab(item, this.animScroll);
  742.             }
  743.             item.fireEvent('activate', item);
  744.             this.fireEvent('tabchange', this, item);
  745.         }
  746.     },
  747.     /**
  748.      * Gets the currently active tab.
  749.      * @return {Panel} The active tab
  750.      */
  751.     getActiveTab : function(){
  752.         return this.activeTab || null;
  753.     },
  754.     /**
  755.      * Gets the specified tab by id.
  756.      * @param {String} id The tab id
  757.      * @return {Panel} The tab
  758.      */
  759.     getItem : function(item){
  760.         return this.getComponent(item);
  761.     },
  762.     // private
  763.     autoScrollTabs : function(){
  764.         this.pos = this.tabPosition=='bottom' ? this.footer : this.header;
  765.         var count = this.items.length;
  766.         var ow = this.pos.dom.offsetWidth;
  767.         var tw = this.pos.dom.clientWidth;
  768.         var wrap = this.stripWrap;
  769.         var wd = wrap.dom;
  770.         var cw = wd.offsetWidth;
  771.         var pos = this.getScrollPos();
  772.         var l = this.edge.getOffsetsTo(this.stripWrap)[0] + pos;
  773.         if(!this.enableTabScroll || count < 1 || cw < 20){ // 20 to prevent display:none issues
  774.             return;
  775.         }
  776.         if(l <= tw){
  777.             wd.scrollLeft = 0;
  778.             wrap.setWidth(tw);
  779.             if(this.scrolling){
  780.                 this.scrolling = false;
  781.                 this.pos.removeClass('x-tab-scrolling');
  782.                 this.scrollLeft.hide();
  783.                 this.scrollRight.hide();
  784.                 // See here: http://extjs.com/forum/showthread.php?t=49308&highlight=isSafari
  785.                 if(Ext.isAir || Ext.isWebKit){
  786.                     wd.style.marginLeft = '';
  787.                     wd.style.marginRight = '';
  788.                 }
  789.             }
  790.         }else{
  791.             if(!this.scrolling){
  792.                 this.pos.addClass('x-tab-scrolling');
  793.                 // See here: http://extjs.com/forum/showthread.php?t=49308&highlight=isSafari
  794.                 if(Ext.isAir || Ext.isWebKit){
  795.                     wd.style.marginLeft = '18px';
  796.                     wd.style.marginRight = '18px';
  797.                 }
  798.             }
  799.             tw -= wrap.getMargins('lr');
  800.             wrap.setWidth(tw > 20 ? tw : 20);
  801.             if(!this.scrolling){
  802.                 if(!this.scrollLeft){
  803.                     this.createScrollers();
  804.                 }else{
  805.                     this.scrollLeft.show();
  806.                     this.scrollRight.show();
  807.                 }
  808.             }
  809.             this.scrolling = true;
  810.             if(pos > (l-tw)){ // ensure it stays within bounds
  811.                 wd.scrollLeft = l-tw;
  812.             }else{ // otherwise, make sure the active tab is still visible
  813.                 this.scrollToTab(this.activeTab, false);
  814.             }
  815.             this.updateScrollButtons();
  816.         }
  817.     },
  818.     // private
  819.     createScrollers : function(){
  820.         this.pos.addClass('x-tab-scrolling-' + this.tabPosition);
  821.         var h = this.stripWrap.dom.offsetHeight;
  822.         // left
  823.         var sl = this.pos.insertFirst({
  824.             cls:'x-tab-scroller-left'
  825.         });
  826.         sl.setHeight(h);
  827.         sl.addClassOnOver('x-tab-scroller-left-over');
  828.         this.leftRepeater = new Ext.util.ClickRepeater(sl, {
  829.             interval : this.scrollRepeatInterval,
  830.             handler: this.onScrollLeft,
  831.             scope: this
  832.         });
  833.         this.scrollLeft = sl;
  834.         // right
  835.         var sr = this.pos.insertFirst({
  836.             cls:'x-tab-scroller-right'
  837.         });
  838.         sr.setHeight(h);
  839.         sr.addClassOnOver('x-tab-scroller-right-over');
  840.         this.rightRepeater = new Ext.util.ClickRepeater(sr, {
  841.             interval : this.scrollRepeatInterval,
  842.             handler: this.onScrollRight,
  843.             scope: this
  844.         });
  845.         this.scrollRight = sr;
  846.     },
  847.     // private
  848.     getScrollWidth : function(){
  849.         return this.edge.getOffsetsTo(this.stripWrap)[0] + this.getScrollPos();
  850.     },
  851.     // private
  852.     getScrollPos : function(){
  853.         return parseInt(this.stripWrap.dom.scrollLeft, 10) || 0;
  854.     },
  855.     // private
  856.     getScrollArea : function(){
  857.         return parseInt(this.stripWrap.dom.clientWidth, 10) || 0;
  858.     },
  859.     // private
  860.     getScrollAnim : function(){
  861.         return {duration:this.scrollDuration, callback: this.updateScrollButtons, scope: this};
  862.     },
  863.     // private
  864.     getScrollIncrement : function(){
  865.         return this.scrollIncrement || (this.resizeTabs ? this.lastTabWidth+2 : 100);
  866.     },
  867.     /**
  868.      * Scrolls to a particular tab if tab scrolling is enabled
  869.      * @param {Panel} item The item to scroll to
  870.      * @param {Boolean} animate True to enable animations
  871.      */
  872.     scrollToTab : function(item, animate){
  873.         if(!item){ return; }
  874.         var el = this.getTabEl(item);
  875.         var pos = this.getScrollPos(), area = this.getScrollArea();
  876.         var left = Ext.fly(el).getOffsetsTo(this.stripWrap)[0] + pos;
  877.         var right = left + el.offsetWidth;
  878.         if(left < pos){
  879.             this.scrollTo(left, animate);
  880.         }else if(right > (pos + area)){
  881.             this.scrollTo(right - area, animate);
  882.         }
  883.     },
  884.     // private
  885.     scrollTo : function(pos, animate){
  886.         this.stripWrap.scrollTo('left', pos, animate ? this.getScrollAnim() : false);
  887.         if(!animate){
  888.             this.updateScrollButtons();
  889.         }
  890.     },
  891.     onWheel : function(e){
  892.         var d = e.getWheelDelta()*this.wheelIncrement*-1;
  893.         e.stopEvent();
  894.         var pos = this.getScrollPos();
  895.         var newpos = pos + d;
  896.         var sw = this.getScrollWidth()-this.getScrollArea();
  897.         var s = Math.max(0, Math.min(sw, newpos));
  898.         if(s != pos){
  899.             this.scrollTo(s, false);
  900.         }
  901.     },
  902.     // private
  903.     onScrollRight : function(){
  904.         var sw = this.getScrollWidth()-this.getScrollArea();
  905.         var pos = this.getScrollPos();
  906.         var s = Math.min(sw, pos + this.getScrollIncrement());
  907.         if(s != pos){
  908.             this.scrollTo(s, this.animScroll);
  909.         }
  910.     },
  911.     // private
  912.     onScrollLeft : function(){
  913.         var pos = this.getScrollPos();
  914.         var s = Math.max(0, pos - this.getScrollIncrement());
  915.         if(s != pos){
  916.             this.scrollTo(s, this.animScroll);
  917.         }
  918.     },
  919.     // private
  920.     updateScrollButtons : function(){
  921.         var pos = this.getScrollPos();
  922.         this.scrollLeft[pos === 0 ? 'addClass' : 'removeClass']('x-tab-scroller-left-disabled');
  923.         this.scrollRight[pos >= (this.getScrollWidth()-this.getScrollArea()) ? 'addClass' : 'removeClass']('x-tab-scroller-right-disabled');
  924.     },
  925.     // private
  926.     beforeDestroy : function() {
  927.         if(this.items){
  928.             this.items.each(function(item){
  929.                 if(item && item.tabEl){
  930.                     Ext.get(item.tabEl).removeAllListeners();
  931.                     item.tabEl = null;
  932.                 }
  933.             }, this);
  934.         }
  935.         if(this.strip){
  936.             this.strip.removeAllListeners();
  937.         }
  938.         Ext.TabPanel.superclass.beforeDestroy.apply(this);
  939.     }
  940.     /**
  941.      * @cfg {Boolean} collapsible
  942.      * @hide
  943.      */
  944.     /**
  945.      * @cfg {String} header
  946.      * @hide
  947.      */
  948.     /**
  949.      * @cfg {Boolean} headerAsText
  950.      * @hide
  951.      */
  952.     /**
  953.      * @property header
  954.      * @hide
  955.      */
  956.     /**
  957.      * @property title
  958.      * @hide
  959.      */
  960.     /**
  961.      * @cfg {Array} tools
  962.      * @hide
  963.      */
  964.     /**
  965.      * @cfg {Array} toolTemplate
  966.      * @hide
  967.      */
  968.     /**
  969.      * @cfg {Boolean} hideCollapseTool
  970.      * @hide
  971.      */
  972.     /**
  973.      * @cfg {Boolean} titleCollapse
  974.      * @hide
  975.      */
  976.     /**
  977.      * @cfg {Boolean} collapsed
  978.      * @hide
  979.      */
  980.     /**
  981.      * @cfg {String} layout
  982.      * @hide
  983.      */
  984.     /**
  985.      * @cfg {Boolean} preventBodyReset
  986.      * @hide
  987.      */
  988. });
  989. Ext.reg('tabpanel', Ext.TabPanel);
  990. /**
  991.  * See {@link #setActiveTab}. Sets the specified tab as the active tab. This method fires
  992.  * the {@link #beforetabchange} event which can <tt>return false</tt> to cancel the tab change.
  993.  * @param {String/Panel} tab The id or tab Panel to activate
  994.  * @method activate
  995.  */
  996. Ext.TabPanel.prototype.activate = Ext.TabPanel.prototype.setActiveTab;
  997. // private utility class used by TabPanel
  998. Ext.TabPanel.AccessStack = function(){
  999.     var items = [];
  1000.     return {
  1001.         add : function(item){
  1002.             items.push(item);
  1003.             if(items.length > 10){
  1004.                 items.shift();
  1005.             }
  1006.         },
  1007.         remove : function(item){
  1008.             var s = [];
  1009.             for(var i = 0, len = items.length; i < len; i++) {
  1010.                 if(items[i] != item){
  1011.                     s.push(items[i]);
  1012.                 }
  1013.             }
  1014.             items = s;
  1015.         },
  1016.         next : function(){
  1017.             return items.pop();
  1018.         }
  1019.     };
  1020. };