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

中间件编程

开发平台:

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.Panel
  9.  * @extends Ext.Container
  10.  * <p>Panel is a container that has specific functionality and structural components that make
  11.  * it the perfect building block for application-oriented user interfaces.</p>
  12.  * <p>Panels are, by virtue of their inheritance from {@link Ext.Container}, capable
  13.  * of being configured with a {@link Ext.Container#layout layout}, and containing child Components.</p>
  14.  * <p>When either specifying child {@link Ext.Component#items items} of a Panel, or dynamically {@link Ext.Container#add adding} Components
  15.  * to a Panel, remember to consider how you wish the Panel to arrange those child elements, and whether
  16.  * those child elements need to be sized using one of Ext's built-in <tt><b>{@link Ext.Container#layout layout}</b></tt> schemes. By
  17.  * default, Panels use the {@link Ext.layout.ContainerLayout ContainerLayout} scheme. This simply renders
  18.  * child components, appending them one after the other inside the Container, and <b>does not apply any sizing</b>
  19.  * at all.</p>
  20.  * <p>A Panel may also contain {@link #bbar bottom} and {@link #tbar top} toolbars, along with separate
  21.  * {@link #header}, {@link #footer} and {@link #body} sections (see {@link #frame} for additional
  22.  * information).</p>
  23.  * <p>Panel also provides built-in {@link #collapsible expandable and collapsible behavior}, along with
  24.  * a variety of {@link #tools prebuilt tool buttons} that can be wired up to provide other customized
  25.  * behavior.  Panels can be easily dropped into any {@link Ext.Container Container} or layout, and the
  26.  * layout and rendering pipeline is {@link Ext.Container#add completely managed by the framework}.</p>
  27.  * @constructor
  28.  * @param {Object} config The config object
  29.  * @xtype panel
  30.  */
  31. Ext.Panel = Ext.extend(Ext.Container, {
  32.     /**
  33.      * The Panel's header {@link Ext.Element Element}. Read-only.
  34.      * <p>This Element is used to house the {@link #title} and {@link #tools}</p>
  35.      * <br><p><b>Note</b>: see the Note for <tt>{@link Ext.Component#el el} also.</p>
  36.      * @type Ext.Element
  37.      * @property header
  38.      */
  39.     /**
  40.      * The Panel's body {@link Ext.Element Element} which may be used to contain HTML content.
  41.      * The content may be specified in the {@link #html} config, or it may be loaded using the
  42.      * {@link autoLoad} config, or through the Panel's {@link #getUpdater Updater}. Read-only.
  43.      * <p>If this is used to load visible HTML elements in either way, then
  44.      * the Panel may not be used as a Layout for hosting nested Panels.</p>
  45.      * <p>If this Panel is intended to be used as the host of a Layout (See {@link #layout}
  46.      * then the body Element must not be loaded or changed - it is under the control
  47.      * of the Panel's Layout.
  48.      * <br><p><b>Note</b>: see the Note for <tt>{@link Ext.Component#el el} also.</p>
  49.      * @type Ext.Element
  50.      * @property body
  51.      */
  52.     /**
  53.      * The Panel's bwrap {@link Ext.Element Element} used to contain other Panel elements
  54.      * (tbar, body, bbar, footer). See {@link #bodyCfg}. Read-only.
  55.      * @type Ext.Element
  56.      * @property bwrap
  57.      */
  58.     /**
  59.      * True if this panel is collapsed. Read-only.
  60.      * @type Boolean
  61.      * @property collapsed
  62.      */
  63.     /**
  64.      * @cfg {Object} bodyCfg
  65.      * <p>A {@link Ext.DomHelper DomHelper} element specification object may be specified for any
  66.      * Panel Element.</p>
  67.      * <p>By default, the Default element in the table below will be used for the html markup to
  68.      * create a child element with the commensurate Default class name (<tt>baseCls</tt> will be
  69.      * replaced by <tt>{@link #baseCls}</tt>):</p>
  70.      * <pre>
  71.      * Panel      Default  Default             Custom      Additional       Additional
  72.      * Element    element  class               element     class            style
  73.      * ========   ==========================   =========   ==============   ===========
  74.      * {@link #header}     div      {@link #baseCls}+'-header'   {@link #headerCfg}   headerCssClass   headerStyle
  75.      * {@link #bwrap}      div      {@link #baseCls}+'-bwrap'     {@link #bwrapCfg}    bwrapCssClass    bwrapStyle
  76.      * + tbar     div      {@link #baseCls}+'-tbar'       {@link #tbarCfg}     tbarCssClass     tbarStyle
  77.      * + {@link #body}     div      {@link #baseCls}+'-body'       {@link #bodyCfg}     {@link #bodyCssClass}     {@link #bodyStyle}
  78.      * + bbar     div      {@link #baseCls}+'-bbar'       {@link #bbarCfg}     bbarCssClass     bbarStyle
  79.      * + {@link #footer}   div      {@link #baseCls}+'-footer'   {@link #footerCfg}   footerCssClass   footerStyle
  80.      * </pre>
  81.      * <p>Configuring a Custom element may be used, for example, to force the {@link #body} Element
  82.      * to use a different form of markup than is created by default. An example of this might be
  83.      * to {@link Ext.Element#createChild create a child} Panel containing a custom content, such as
  84.      * a header, or forcing centering of all Panel content by having the body be a &lt;center&gt;
  85.      * element:</p>
  86.      * <pre><code>
  87. new Ext.Panel({
  88.     title: 'Message Title',
  89.     renderTo: Ext.getBody(),
  90.     width: 200, height: 130,
  91.     <b>bodyCfg</b>: {
  92.         tag: 'center',
  93.         cls: 'x-panel-body',  // Default class not applied if Custom element specified
  94.         html: 'Message'
  95.     },
  96.     footerCfg: {
  97.         tag: 'h2',
  98.         cls: 'x-panel-footer'        // same as the Default class
  99.         html: 'footer html'
  100.     },
  101.     footerCssClass: 'custom-footer', // additional css class, see {@link Ext.element#addClass addClass}
  102.     footerStyle:    'background-color:red' // see {@link #bodyStyle}
  103. });
  104.      * </code></pre>
  105.      * <p>The example above also explicitly creates a <tt>{@link #footer}</tt> with custom markup and
  106.      * styling applied.</p>
  107.      */
  108.     /**
  109.      * @cfg {Object} headerCfg
  110.      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
  111.      * of this Panel's {@link #header} Element.  See <tt>{@link #bodyCfg}</tt> also.</p>
  112.      */
  113.     /**
  114.      * @cfg {Object} bwrapCfg
  115.      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
  116.      * of this Panel's {@link #bwrap} Element.  See <tt>{@link #bodyCfg}</tt> also.</p>
  117.      */
  118.     /**
  119.      * @cfg {Object} tbarCfg
  120.      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
  121.      * of this Panel's {@link #tbar} Element.  See <tt>{@link #bodyCfg}</tt> also.</p>
  122.      */
  123.     /**
  124.      * @cfg {Object} bbarCfg
  125.      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
  126.      * of this Panel's {@link #bbar} Element.  See <tt>{@link #bodyCfg}</tt> also.</p>
  127.      */
  128.     /**
  129.      * @cfg {Object} footerCfg
  130.      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
  131.      * of this Panel's {@link #footer} Element.  See <tt>{@link #bodyCfg}</tt> also.</p>
  132.      */
  133.     /**
  134.      * @cfg {Boolean} closable
  135.      * Panels themselves do not directly support being closed, but some Panel subclasses do (like
  136.      * {@link Ext.Window}) or a Panel Class within an {@link Ext.TabPanel}.  Specify <tt>true</tt>
  137.      * to enable closing in such situations. Defaults to <tt>false</tt>.
  138.      */
  139.     /**
  140.      * The Panel's footer {@link Ext.Element Element}. Read-only.
  141.      * <p>This Element is used to house the Panel's <tt>{@link #buttons}</tt> or <tt>{@link #fbar}</tt>.</p>
  142.      * <br><p><b>Note</b>: see the Note for <tt>{@link Ext.Component#el el} also.</p>
  143.      * @type Ext.Element
  144.      * @property footer
  145.      */
  146.     /**
  147.      * @cfg {Mixed} applyTo
  148.      * <p>The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in
  149.      * the document that specifies some panel-specific structural markup.  When <tt>applyTo</tt> is used,
  150.      * constituent parts of the panel can be specified by CSS class name within the main element, and the panel
  151.      * will automatically create those components from that markup. Any required components not specified in the
  152.      * markup will be autogenerated if necessary.</p>
  153.      * <p>The following class names are supported (baseCls will be replaced by {@link #baseCls}):</p>
  154.      * <ul><li>baseCls + '-header'</li>
  155.      * <li>baseCls + '-header-text'</li>
  156.      * <li>baseCls + '-bwrap'</li>
  157.      * <li>baseCls + '-tbar'</li>
  158.      * <li>baseCls + '-body'</li>
  159.      * <li>baseCls + '-bbar'</li>
  160.      * <li>baseCls + '-footer'</li></ul>
  161.      * <p>Using this config, a call to render() is not required.  If applyTo is specified, any value passed for
  162.      * {@link #renderTo} will be ignored and the target element's parent node will automatically be used as the
  163.      * panel's container.</p>
  164.      */
  165.     /**
  166.      * @cfg {Object/Array} tbar
  167.      * <p>The top toolbar of the panel. This can be a {@link Ext.Toolbar} object, a toolbar config, or an array of
  168.      * buttons/button configs to be added to the toolbar.  Note that this is not available as a property after render.
  169.      * To access the top toolbar after render, use {@link #getTopToolbar}.</p>
  170.      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not</b> be updated by a load
  171.      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
  172.      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
  173.      * submission parameters are collected from the DOM tree.</p>
  174.      */
  175.     /**
  176.      * @cfg {Object/Array} bbar
  177.      * <p>The bottom toolbar of the panel. This can be a {@link Ext.Toolbar} object, a toolbar config, or an array of
  178.      * buttons/button configs to be added to the toolbar.  Note that this is not available as a property after render.
  179.      * To access the bottom toolbar after render, use {@link #getBottomToolbar}.</p>
  180.      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not<b> be updated by a load
  181.      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
  182.      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
  183.      * submission parameters are collected from the DOM tree.</p>
  184.      */
  185.     /** @cfg {Object/Array} fbar
  186.      * <p>A {@link Ext.Toolbar Toolbar} object, a Toolbar config, or an array of
  187.      * {@link Ext.Button Button}s/{@link Ext.Button Button} configs, describing a {@link Ext.Toolbar Toolbar} to be rendered into this Panel's footer element.</p>
  188.      * <p>After render, the <code>fbar</code> property will be an {@link Ext.Toolbar Toolbar} instance.</p>
  189.      * <p>If <tt>{@link #buttons}</tt> are specified, they will supersede the <tt>fbar</tt> configuration property.</p>
  190.      * The Panel's <tt>{@link #buttonAlign}</tt> configuration affects the layout of these items, for example:
  191.      * <pre><code>
  192. var w = new Ext.Window({
  193.     height: 250,
  194.     width: 500,
  195.     bbar: new Ext.Toolbar({
  196.         items: [{
  197.             text: 'bbar Left'
  198.         },'->',{
  199.             text: 'bbar Right'
  200.         }]
  201.     }),
  202.     {@link #buttonAlign}: 'left', // anything but 'center' or 'right' and you can use "-", and "->"
  203.                                   // to control the alignment of fbar items
  204.     fbar: [{
  205.         text: 'fbar Left'
  206.     },'->',{
  207.         text: 'fbar Right'
  208.     }]
  209. }).show();
  210.      * </code></pre>
  211.      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not<b> be updated by a load
  212.      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
  213.      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
  214.      * submission parameters are collected from the DOM tree.</p>
  215.      */
  216.     /**
  217.      * @cfg {Boolean} header
  218.      * <tt>true</tt> to create the Panel's header element explicitly, <tt>false</tt> to skip creating
  219.      * it.  If a <tt>{@link #title}</tt> is set the header will be created automatically, otherwise it will not.
  220.      * If a <tt>{@link #title}</tt> is set but <tt>header</tt> is explicitly set to <tt>false</tt>, the header
  221.      * will not be rendered.
  222.      */
  223.     /**
  224.      * @cfg {Boolean} footer
  225.      * <tt>true</tt> to create the footer element explicitly, false to skip creating it. The footer
  226.      * will be created automatically if <tt>{@link #buttons}</tt> or a <tt>{@link #fbar}</tt> have
  227.      * been configured.  See <tt>{@link #bodyCfg}</tt> for an example.
  228.      */
  229.     /**
  230.      * @cfg {String} title
  231.      * The title text to be used as innerHTML (html tags are accepted) to display in the panel
  232.      * <tt>{@link #header}</tt> (defaults to ''). When a <tt>title</tt> is specified the
  233.      * <tt>{@link #header}</tt> element will automatically be created and displayed unless
  234.      * {@link #header} is explicitly set to <tt>false</tt>.  If you do not want to specify a
  235.      * <tt>title</tt> at config time, but you may want one later, you must either specify a non-empty
  236.      * <tt>title</tt> (a blank space ' ' will do) or <tt>header:true</tt> so that the container
  237.      * element will get created.
  238.      */
  239.     /**
  240.      * @cfg {Array} buttons
  241.      * <tt>buttons</tt> will be used as <tt>{@link Ext.Container#items items}</tt> for the toolbar in
  242.      * the footer (<tt>{@link #fbar}</tt>). Typically the value of this configuration property will be
  243.      * an array of {@link Ext.Button}s or {@link Ext.Button} configuration objects.
  244.      * If an item is configured with <tt>minWidth</tt> or the Panel is configured with <tt>minButtonWidth</tt>,
  245.      * that width will be applied to the item.
  246.      */
  247.     /**
  248.      * @cfg {Object/String/Function} autoLoad
  249.      * A valid url spec according to the Updater {@link Ext.Updater#update} method.
  250.      * If autoLoad is not null, the panel will attempt to load its contents
  251.      * immediately upon render.<p>
  252.      * The URL will become the default URL for this panel's {@link #body} element,
  253.      * so it may be {@link Ext.Element#refresh refresh}ed at any time.</p>
  254.      */
  255.     /**
  256.      * @cfg {Boolean} frame
  257.      * <tt>false</tt> by default to render with plain 1px square borders. <tt>true</tt> to render with
  258.      * 9 elements, complete with custom rounded corners (also see {@link Ext.Element#boxWrap}).
  259.      * <p>The template generated for each condition is depicted below:</p><pre><code>
  260.      *
  261. // frame = false
  262. &lt;div id="developer-specified-id-goes-here" class="x-panel">
  263.     &lt;div class="x-panel-header">&lt;span class="x-panel-header-text">Title: (frame:false)&lt;/span>&lt;/div>
  264.     &lt;div class="x-panel-bwrap">
  265.         &lt;div class="x-panel-body">&lt;p>html value goes here&lt;/p>&lt;/div>
  266.     &lt;/div>
  267. &lt;/div>
  268. // frame = true (create 9 elements)
  269. &lt;div id="developer-specified-id-goes-here" class="x-panel">
  270.     &lt;div class="x-panel-tl">&lt;div class="x-panel-tr">&lt;div class="x-panel-tc">
  271.         &lt;div class="x-panel-header">&lt;span class="x-panel-header-text">Title: (frame:true)&lt;/span>&lt;/div>
  272.     &lt;/div>&lt;/div>&lt;/div>
  273.     &lt;div class="x-panel-bwrap">
  274.         &lt;div class="x-panel-ml">&lt;div class="x-panel-mr">&lt;div class="x-panel-mc">
  275.             &lt;div class="x-panel-body">&lt;p>html value goes here&lt;/p>&lt;/div>
  276.         &lt;/div>&lt;/div>&lt;/div>
  277.         &lt;div class="x-panel-bl">&lt;div class="x-panel-br">&lt;div class="x-panel-bc"/>
  278.         &lt;/div>&lt;/div>&lt;/div>
  279. &lt;/div>
  280.      * </code></pre>
  281.      */
  282.     /**
  283.      * @cfg {Boolean} border
  284.      * True to display the borders of the panel's body element, false to hide them (defaults to true).  By default,
  285.      * the border is a 2px wide inset border, but this can be further altered by setting {@link #bodyBorder} to false.
  286.      */
  287.     /**
  288.      * @cfg {Boolean} bodyBorder
  289.      * True to display an interior border on the body element of the panel, false to hide it (defaults to true).
  290.      * This only applies when {@link #border} == true.  If border == true and bodyBorder == false, the border will display
  291.      * as a 1px wide inset border, giving the entire body element an inset appearance.
  292.      */
  293.     /**
  294.      * @cfg {String/Object/Function} bodyCssClass
  295.      * Additional css class selector to be applied to the {@link #body} element in the format expected by
  296.      * {@link Ext.Element#addClass} (defaults to null). See {@link #bodyCfg}.
  297.      */
  298.     /**
  299.      * @cfg {String/Object/Function} bodyStyle
  300.      * Custom CSS styles to be applied to the {@link #body} element in the format expected by
  301.      * {@link Ext.Element#applyStyles} (defaults to null). See {@link #bodyCfg}.
  302.      */
  303.     /**
  304.      * @cfg {String} iconCls
  305.      * The CSS class selector that specifies a background image to be used as the header icon (defaults to '').
  306.      * <p>An example of specifying a custom icon class would be something like:
  307.      * </p><pre><code>
  308. // specify the property in the config for the class:
  309.      ...
  310.      iconCls: 'my-icon'
  311. // css class that specifies background image to be used as the icon image:
  312. .my-icon { background-image: url(../images/my-icon.gif) 0 6px no-repeat !important; }
  313. </code></pre>
  314.      */
  315.     /**
  316.      * @cfg {Boolean} collapsible
  317.      * True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into
  318.      * the header tool button area, false to keep the panel statically sized with no button (defaults to false).
  319.      */
  320.     /**
  321.      * @cfg {Array} tools
  322.      * An array of tool button configs to be added to the header tool area. When rendered, each tool is
  323.      * stored as an {@link Ext.Element Element} referenced by a public property called <tt><b></b>tools.<i>&lt;tool-type&gt;</i></tt>
  324.      * <p>Each tool config may contain the following properties:
  325.      * <div class="mdetail-params"><ul>
  326.      * <li><b>id</b> : String<div class="sub-desc"><b>Required.</b> The type
  327.      * of tool to create. By default, this assigns a CSS class of the form <tt>x-tool-<i>&lt;tool-type&gt;</i></tt> to the
  328.      * resulting tool Element. Ext provides CSS rules, and an icon sprite containing images for the tool types listed below.
  329.      * The developer may implement custom tools by supplying alternate CSS rules and background images:
  330.      * <ul>
  331.      * <div class="x-tool x-tool-toggle" style="float:left; margin-right:5;"> </div><div><tt> toggle</tt> (Created by default when {@link #collapsible} is <tt>true</tt>)</div>
  332.      * <div class="x-tool x-tool-close" style="float:left; margin-right:5;"> </div><div><tt> close</tt></div>
  333.      * <div class="x-tool x-tool-minimize" style="float:left; margin-right:5;"> </div><div><tt> minimize</tt></div>
  334.      * <div class="x-tool x-tool-maximize" style="float:left; margin-right:5;"> </div><div><tt> maximize</tt></div>
  335.      * <div class="x-tool x-tool-restore" style="float:left; margin-right:5;"> </div><div><tt> restore</tt></div>
  336.      * <div class="x-tool x-tool-gear" style="float:left; margin-right:5;"> </div><div><tt> gear</tt></div>
  337.      * <div class="x-tool x-tool-pin" style="float:left; margin-right:5;"> </div><div><tt> pin</tt></div>
  338.      * <div class="x-tool x-tool-unpin" style="float:left; margin-right:5;"> </div><div><tt> unpin</tt></div>
  339.      * <div class="x-tool x-tool-right" style="float:left; margin-right:5;"> </div><div><tt> right</tt></div>
  340.      * <div class="x-tool x-tool-left" style="float:left; margin-right:5;"> </div><div><tt> left</tt></div>
  341.      * <div class="x-tool x-tool-up" style="float:left; margin-right:5;"> </div><div><tt> up</tt></div>
  342.      * <div class="x-tool x-tool-down" style="float:left; margin-right:5;"> </div><div><tt> down</tt></div>
  343.      * <div class="x-tool x-tool-refresh" style="float:left; margin-right:5;"> </div><div><tt> refresh</tt></div>
  344.      * <div class="x-tool x-tool-minus" style="float:left; margin-right:5;"> </div><div><tt> minus</tt></div>
  345.      * <div class="x-tool x-tool-plus" style="float:left; margin-right:5;"> </div><div><tt> plus</tt></div>
  346.      * <div class="x-tool x-tool-help" style="float:left; margin-right:5;"> </div><div><tt> help</tt></div>
  347.      * <div class="x-tool x-tool-search" style="float:left; margin-right:5;"> </div><div><tt> search</tt></div>
  348.      * <div class="x-tool x-tool-save" style="float:left; margin-right:5;"> </div><div><tt> save</tt></div>
  349.      * <div class="x-tool x-tool-print" style="float:left; margin-right:5;"> </div><div><tt> print</tt></div>
  350.      * </ul></div></li>
  351.      * <li><b>handler</b> : Function<div class="sub-desc"><b>Required.</b> The function to
  352.      * call when clicked. Arguments passed are:<ul>
  353.      * <li><b>event</b> : Ext.EventObject<div class="sub-desc">The click event.</div></li>
  354.      * <li><b>toolEl</b> : Ext.Element<div class="sub-desc">The tool Element.</div></li>
  355.      * <li><b>panel</b> : Ext.Panel<div class="sub-desc">The host Panel</div></li>
  356.      * <li><b>tc</b> : Ext.Panel<div class="sub-desc">The tool configuration object</div></li>
  357.      * </ul></div></li>
  358.      * <li><b>stopEvent</b> : Boolean<div class="sub-desc">Defaults to true. Specify as false to allow click event to propagate.</div></li>
  359.      * <li><b>scope</b> : Object<div class="sub-desc">The scope in which to call the handler.</div></li>
  360.      * <li><b>qtip</b> : String/Object<div class="sub-desc">A tip string, or
  361.      * a config argument to {@link Ext.QuickTip#register}</div></li>
  362.      * <li><b>hidden</b> : Boolean<div class="sub-desc">True to initially render hidden.</div></li>
  363.      * <li><b>on</b> : Object<div class="sub-desc">A listener config object specifiying
  364.      * event listeners in the format of an argument to {@link #addListener}</div></li>
  365.      * </ul></div>
  366.      * <p>Note that, apart from the toggle tool which is provided when a panel is collapsible, these
  367.      * tools only provide the visual button. Any required functionality must be provided by adding
  368.      * handlers that implement the necessary behavior.</p>
  369.      * <p>Example usage:</p>
  370.      * <pre><code>
  371. tools:[{
  372.     id:'refresh',
  373.     qtip: 'Refresh form Data',
  374.     // hidden:true,
  375.     handler: function(event, toolEl, panel){
  376.         // refresh logic
  377.     }
  378. },
  379. {
  380.     id:'help',
  381.     qtip: 'Get Help',
  382.     handler: function(event, toolEl, panel){
  383.         // whatever
  384.     }
  385. }]
  386. </code></pre>
  387.      * <p>For the custom id of <tt>'help'</tt> define two relevant css classes with a link to
  388.      * a 15x15 image:</p>
  389.      * <pre><code>
  390. .x-tool-help {background-image: url(images/help.png);}
  391. .x-tool-help-over {background-image: url(images/help_over.png);}
  392. // if using an image sprite:
  393. .x-tool-help {background-image: url(images/help.png) no-repeat 0 0;}
  394. .x-tool-help-over {background-position:-15px 0;}
  395. </code></pre>
  396.      */
  397.     /**
  398.      * @cfg {Ext.Template/Ext.XTemplate} toolTemplate
  399.      * <p>A Template used to create {@link #tools} in the {@link #header} Element. Defaults to:</p><pre><code>
  400. new Ext.Template('&lt;div class="x-tool x-tool-{id}">&amp;#160;&lt;/div>')</code></pre>
  401.      * <p>This may may be overridden to provide a custom DOM structure for tools based upon a more
  402.      * complex XTemplate. The template's data is a single tool configuration object (Not the entire Array)
  403.      * as specified in {@link #tools}.  In the following example an &lt;a> tag is used to provide a
  404.      * visual indication when hovering over the tool:</p><pre><code>
  405. var win = new Ext.Window({
  406.     tools: [{
  407.         id: 'download',
  408.         href: '/MyPdfDoc.pdf'
  409.     }],
  410.     toolTemplate: new Ext.XTemplate(
  411.         '&lt;tpl if="id=='download'">',
  412.             '&lt;a class="x-tool x-tool-pdf" href="{href}">&lt;/a>',
  413.         '&lt;/tpl>',
  414.         '&lt;tpl if="id!='download'">',
  415.             '&lt;div class="x-tool x-tool-{id}">&amp;#160;&lt;/div>',
  416.         '&lt;/tpl>'
  417.     ),
  418.     width:500,
  419.     height:300,
  420.     closeAction:'hide'
  421. });</code></pre>
  422.      * <p>Note that the CSS class "x-tool-pdf" should have an associated style rule which provides an
  423.      * appropriate background image, something like:</p>
  424.     <pre><code>
  425.     a.x-tool-pdf {background-image: url(../shared/extjs/images/pdf.gif)!important;}
  426.     </code></pre>
  427.      */
  428.     /**
  429.      * @cfg {Boolean} hideCollapseTool
  430.      * <tt>true</tt> to hide the expand/collapse toggle button when <code>{@link #collapsible} == true</code>,
  431.      * <tt>false</tt> to display it (defaults to <tt>false</tt>).
  432.      */
  433.     /**
  434.      * @cfg {Boolean} titleCollapse
  435.      * <tt>true</tt> to allow expanding and collapsing the panel (when <tt>{@link #collapsible} = true</tt>)
  436.      * by clicking anywhere in the header bar, <tt>false</tt>) to allow it only by clicking to tool button
  437.      * (defaults to <tt>false</tt>)). If this panel is a child item of a border layout also see the
  438.      * {@link Ext.layout.BorderLayout.Region BorderLayout.Region}
  439.      * <tt>{@link Ext.layout.BorderLayout.Region#floatable floatable}</tt> config option.
  440.      */
  441.     /**
  442.      * @cfg {Boolean} autoScroll
  443.      * <tt>true</tt> to use overflow:'auto' on the panel's body element and show scroll bars automatically when
  444.      * necessary, <tt>false</tt> to clip any overflowing content (defaults to <tt>false</tt>).
  445.      */
  446.     /**
  447.      * @cfg {Mixed} floating
  448.      * <p>This property is used to configure the underlying {@link Ext.Layer}. Acceptable values for this
  449.      * configuration property are:</p><div class="mdetail-params"><ul>
  450.      * <li><b><tt>false</tt></b> : <b>Default.</b><div class="sub-desc">Display the panel inline where it is
  451.      * rendered.</div></li>
  452.      * <li><b><tt>true</tt></b> : <div class="sub-desc">Float the panel (absolute position it with automatic
  453.      * shimming and shadow).<ul>
  454.      * <div class="sub-desc">Setting floating to true will create an Ext.Layer for this panel and display the
  455.      * panel at negative offsets so that it is hidden.</div>
  456.      * <div class="sub-desc">Since the panel will be absolute positioned, the position must be set explicitly
  457.      * <i>after</i> render (e.g., <tt>myPanel.setPosition(100,100);</tt>).</div>
  458.      * <div class="sub-desc"><b>Note</b>: when floating a panel you should always assign a fixed width,
  459.      * otherwise it will be auto width and will expand to fill to the right edge of the viewport.</div>
  460.      * </ul></div></li>
  461.      * <li><b><tt>{@link Ext.Layer object}</tt></b> : <div class="sub-desc">The specified object will be used
  462.      * as the configuration object for the {@link Ext.Layer} that will be created.</div></li>
  463.      * </ul></div>
  464.      */
  465.     /**
  466.      * @cfg {Boolean/String} shadow
  467.      * <tt>true</tt> (or a valid Ext.Shadow {@link Ext.Shadow#mode} value) to display a shadow behind the
  468.      * panel, <tt>false</tt> to display no shadow (defaults to <tt>'sides'</tt>).  Note that this option
  469.      * only applies when <tt>{@link #floating} = true</tt>.
  470.      */
  471.     /**
  472.      * @cfg {Number} shadowOffset
  473.      * The number of pixels to offset the shadow if displayed (defaults to <tt>4</tt>). Note that this
  474.      * option only applies when <tt>{@link #floating} = true</tt>.
  475.      */
  476.     /**
  477.      * @cfg {Boolean} shim
  478.      * <tt>false</tt> to disable the iframe shim in browsers which need one (defaults to <tt>true</tt>).
  479.      * Note that this option only applies when <tt>{@link #floating} = true</tt>.
  480.      */
  481.     /**
  482.      * @cfg {String/Object} html
  483.      * An HTML fragment, or a {@link Ext.DomHelper DomHelper} specification to use as the panel's body
  484.      * content (defaults to ''). The HTML content is added by the Panel's {@link #afterRender} method,
  485.      * and so the document will not contain this HTML at the time the {@link #render} event is fired.
  486.      * This content is inserted into the body <i>before</i> any configured {@link #contentEl} is appended.
  487.      */
  488.     /**
  489.      * @cfg {String} contentEl
  490.      * <p>Specify the <tt>id</tt> of an existing HTML node to use as the panel's body content
  491.      * (defaults to '').</p><div><ul>
  492.      * <li><b>Description</b> : <ul>
  493.      * <div class="sub-desc">This config option is used to take an existing HTML element and place it in the body
  494.      * of a new panel (it simply moves the specified DOM element into the body element of the Panel
  495.      * <i>when the Panel is rendered</i> to use as the content (it is not going to be the
  496.      * actual panel itself).</div>
  497.      * </ul></li>
  498.      * <li><b>Notes</b> : <ul>
  499.      * <div class="sub-desc">The specified HTML Element is appended to the Panel's {@link #body} Element by the
  500.      * Panel's {@link #afterRender} method <i>after any configured {@link #html HTML} has
  501.      * been inserted</i>, and so the document will not contain this HTML at the time the
  502.      * {@link #render} event is fired.</div>
  503.      * <div class="sub-desc">The specified HTML element used will not participate in any layout scheme that the
  504.      * Panel may use. It's just HTML. Layouts operate on child items.</div>
  505.      * <div class="sub-desc">Add either the <tt>x-hidden</tt> or the <tt>x-hide-display</tt> CSS class to
  506.      * prevent a brief flicker of the content before it is rendered to the panel.</div>
  507.      * </ul></li>
  508.      * </ul></div>
  509.      */
  510.     /**
  511.      * @cfg {Object/Array} keys
  512.      * A {@link Ext.KeyMap} config object (in the format expected by {@link Ext.KeyMap#addBinding}
  513.      * used to assign custom key handling to this panel (defaults to <tt>null</tt>).
  514.      */
  515.     /**
  516.      * @cfg {Boolean/Object} draggable
  517.      * <p><tt>true</tt> to enable dragging of this Panel (defaults to <tt>false</tt>).</p>
  518.      * <p>For custom drag/drop implementations, an <b>Ext.Panel.DD</b> config could also be passed
  519.      * in this config instead of <tt>true</tt>. Ext.Panel.DD is an internal, undocumented class which
  520.      * moves a proxy Element around in place of the Panel's element, but provides no other behaviour
  521.      * during dragging or on drop. It is a subclass of {@link Ext.dd.DragSource}, so behaviour may be
  522.      * added by implementing the interface methods of {@link Ext.dd.DragDrop} e.g.:
  523.      * <pre><code>
  524. new Ext.Panel({
  525.     title: 'Drag me',
  526.     x: 100,
  527.     y: 100,
  528.     renderTo: Ext.getBody(),
  529.     floating: true,
  530.     frame: true,
  531.     width: 400,
  532.     height: 200,
  533.     draggable: {
  534. //      Config option of Ext.Panel.DD class.
  535. //      It&#39;s a floating Panel, so do not show a placeholder proxy in the original position.
  536.         insertProxy: false,
  537. //      Called for each mousemove event while dragging the DD object.
  538.         onDrag : function(e){
  539. //          Record the x,y position of the drag proxy so that we can
  540. //          position the Panel at end of drag.
  541.             var pel = this.proxy.getEl();
  542.             this.x = pel.getLeft(true);
  543.             this.y = pel.getTop(true);
  544. //          Keep the Shadow aligned if there is one.
  545.             var s = this.panel.getEl().shadow;
  546.             if (s) {
  547.                 s.realign(this.x, this.y, pel.getWidth(), pel.getHeight());
  548.             }
  549.         },
  550. //      Called on the mouseup event.
  551.         endDrag : function(e){
  552.             this.panel.setPosition(this.x, this.y);
  553.         }
  554.     }
  555. }).show();
  556. </code></pre>
  557.      */
  558.     /**
  559.      * @cfg {String} tabTip
  560.      * A string to be used as innerHTML (html tags are accepted) to show in a tooltip when mousing over
  561.      * the tab of a Ext.Panel which is an item of a {@link Ext.TabPanel}. {@link Ext.QuickTips}.init()
  562.      * must be called in order for the tips to render.
  563.      */
  564.     /**
  565.      * @cfg {Boolean} disabled
  566.      * Render this panel disabled (default is <tt>false</tt>). An important note when using the disabled
  567.      * config on panels is that IE will often fail to initialize the disabled mask element correectly if
  568.      * the panel's layout has not yet completed by the time the Panel is disabled during the render process.
  569.      * If you experience this issue, you may need to instead use the {@link #afterlayout} event to initialize
  570.      * the disabled state:
  571.      * <pre><code>
  572. new Ext.Panel({
  573.     ...
  574.     listeners: {
  575.         'afterlayout': {
  576.             fn: function(p){
  577.                 p.disable();
  578.             },
  579.             single: true // important, as many layouts can occur
  580.         }
  581.     }
  582. });
  583. </code></pre>
  584.      */
  585.     /**
  586.      * @cfg {Boolean} autoHeight
  587.      * <tt>true</tt> to use height:'auto', <tt>false</tt> to use fixed height (defaults to <tt>false</tt>).
  588.      * <b>Note</b>: Setting <tt>autoHeight:true</tt> means that the browser will manage the panel's height
  589.      * based on its contents, and that Ext will not manage it at all. If the panel is within a layout that
  590.      * manages dimensions (<tt>fit</tt>, <tt>border</tt>, etc.) then setting <tt>autoHeight:true</tt>
  591.      * can cause issues with scrolling and will not generally work as expected since the panel will take
  592.      * on the height of its contents rather than the height required by the Ext layout.
  593.      */
  594.     /**
  595.      * @cfg {String} baseCls
  596.      * The base CSS class to apply to this panel's element (defaults to <tt>'x-panel'</tt>).
  597.      * <p>Another option available by default is to specify <tt>'x-plain'</tt> which strips all styling
  598.      * except for required attributes for Ext layouts to function (e.g. overflow:hidden).
  599.      * See <tt>{@link #unstyled}</tt> also.</p>
  600.      */
  601.     baseCls : 'x-panel',
  602.     /**
  603.      * @cfg {String} collapsedCls
  604.      * A CSS class to add to the panel's element after it has been collapsed (defaults to
  605.      * <tt>'x-panel-collapsed'</tt>).
  606.      */
  607.     collapsedCls : 'x-panel-collapsed',
  608.     /**
  609.      * @cfg {Boolean} maskDisabled
  610.      * <tt>true</tt> to mask the panel when it is {@link #disabled}, <tt>false</tt> to not mask it (defaults
  611.      * to <tt>true</tt>).  Either way, the panel will always tell its contained elements to disable themselves
  612.      * when it is disabled, but masking the panel can provide an additional visual cue that the panel is
  613.      * disabled.
  614.      */
  615.     maskDisabled : true,
  616.     /**
  617.      * @cfg {Boolean} animCollapse
  618.      * <tt>true</tt> to animate the transition when the panel is collapsed, <tt>false</tt> to skip the
  619.      * animation (defaults to <tt>true</tt> if the {@link Ext.Fx} class is available, otherwise <tt>false</tt>).
  620.      */
  621.     animCollapse : Ext.enableFx,
  622.     /**
  623.      * @cfg {Boolean} headerAsText
  624.      * <tt>true</tt> to display the panel <tt>{@link #title}</tt> in the <tt>{@link #header}</tt>,
  625.      * <tt>false</tt> to hide it (defaults to <tt>true</tt>).
  626.      */
  627.     headerAsText : true,
  628.     /**
  629.      * @cfg {String} buttonAlign
  630.      * The alignment of any {@link #buttons} added to this panel.  Valid values are <tt>'right'</tt>,
  631.      * <tt>'left'</tt> and <tt>'center'</tt> (defaults to <tt>'right'</tt>).
  632.      */
  633.     buttonAlign : 'right',
  634.     /**
  635.      * @cfg {Boolean} collapsed
  636.      * <tt>true</tt> to render the panel collapsed, <tt>false</tt> to render it expanded (defaults to
  637.      * <tt>false</tt>).
  638.      */
  639.     collapsed : false,
  640.     /**
  641.      * @cfg {Boolean} collapseFirst
  642.      * <tt>true</tt> to make sure the collapse/expand toggle button always renders first (to the left of)
  643.      * any other tools in the panel's title bar, <tt>false</tt> to render it last (defaults to <tt>true</tt>).
  644.      */
  645.     collapseFirst : true,
  646.     /**
  647.      * @cfg {Number} minButtonWidth
  648.      * Minimum width in pixels of all {@link #buttons} in this panel (defaults to <tt>75</tt>)
  649.      */
  650.     minButtonWidth : 75,
  651.     /**
  652.      * @cfg {Boolean} unstyled
  653.      * Overrides the <tt>{@link #baseCls}</tt> setting to <tt>{@link #baseCls} = 'x-plain'</tt> which renders
  654.      * the panel unstyled except for required attributes for Ext layouts to function (e.g. overflow:hidden).
  655.      */
  656.     /**
  657.      * @cfg {String} elements
  658.      * A comma-delimited list of panel elements to initialize when the panel is rendered.  Normally, this list will be
  659.      * generated automatically based on the items added to the panel at config time, but sometimes it might be useful to
  660.      * make sure a structural element is rendered even if not specified at config time (for example, you may want
  661.      * to add a button or toolbar dynamically after the panel has been rendered).  Adding those elements to this
  662.      * list will allocate the required placeholders in the panel when it is rendered.  Valid values are<div class="mdetail-params"><ul>
  663.      * <li><tt>header</tt></li>
  664.      * <li><tt>tbar</tt> (top bar)</li>
  665.      * <li><tt>body</tt></li>
  666.      * <li><tt>bbar</tt> (bottom bar)</li>
  667.      * <li><tt>footer</tt></li>
  668.      * </ul></div>
  669.      * Defaults to '<tt>body</tt>'.
  670.      */
  671.     elements : 'body',
  672.     /**
  673.      * @cfg {Boolean} preventBodyReset
  674.      * Defaults to <tt>false</tt>.  When set to <tt>true</tt>, an extra css class <tt>'x-panel-normal'</tt>
  675.      * will be added to the panel's element, effectively applying css styles suggested by the W3C
  676.      * (see http://www.w3.org/TR/CSS21/sample.html) to the Panel's <b>body</b> element (not the header,
  677.      * footer, etc.).
  678.      */
  679.     preventBodyReset : false,
  680.     // protected - these could be used to customize the behavior of the window,
  681.     // but changing them would not be useful without further mofifications and
  682.     // could lead to unexpected or undesirable results.
  683.     toolTarget : 'header',
  684.     collapseEl : 'bwrap',
  685.     slideAnchor : 't',
  686.     disabledClass : '',
  687.     // private, notify box this class will handle heights
  688.     deferHeight : true,
  689.     // private
  690.     expandDefaults: {
  691.         duration : 0.25
  692.     },
  693.     // private
  694.     collapseDefaults : {
  695.         duration : 0.25
  696.     },
  697.     // private
  698.     initComponent : function(){
  699.         Ext.Panel.superclass.initComponent.call(this);
  700.         this.addEvents(
  701.             /**
  702.              * @event bodyresize
  703.              * Fires after the Panel has been resized.
  704.              * @param {Ext.Panel} p the Panel which has been resized.
  705.              * @param {Number} width The Panel's new width.
  706.              * @param {Number} height The Panel's new height.
  707.              */
  708.             'bodyresize',
  709.             /**
  710.              * @event titlechange
  711.              * Fires after the Panel title has been {@link #title set} or {@link #setTitle changed}.
  712.              * @param {Ext.Panel} p the Panel which has had its title changed.
  713.              * @param {String} The new title.
  714.              */
  715.             'titlechange',
  716.             /**
  717.              * @event iconchange
  718.              * Fires after the Panel icon class has been {@link #iconCls set} or {@link #setIconClass changed}.
  719.              * @param {Ext.Panel} p the Panel which has had its {@link #iconCls icon class} changed.
  720.              * @param {String} The new icon class.
  721.              * @param {String} The old icon class.
  722.              */
  723.             'iconchange',
  724.             /**
  725.              * @event collapse
  726.              * Fires after the Panel has been collapsed.
  727.              * @param {Ext.Panel} p the Panel that has been collapsed.
  728.              */
  729.             'collapse',
  730.             /**
  731.              * @event expand
  732.              * Fires after the Panel has been expanded.
  733.              * @param {Ext.Panel} p The Panel that has been expanded.
  734.              */
  735.             'expand',
  736.             /**
  737.              * @event beforecollapse
  738.              * Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.
  739.              * @param {Ext.Panel} p the Panel being collapsed.
  740.              * @param {Boolean} animate True if the collapse is animated, else false.
  741.              */
  742.             'beforecollapse',
  743.             /**
  744.              * @event beforeexpand
  745.              * Fires before the Panel is expanded.  A handler can return false to cancel the expand.
  746.              * @param {Ext.Panel} p The Panel being expanded.
  747.              * @param {Boolean} animate True if the expand is animated, else false.
  748.              */
  749.             'beforeexpand',
  750.             /**
  751.              * @event beforeclose
  752.              * Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
  753.              * Panel subclasses do (like {@link Ext.Window}) or a Panel within a Ext.TabPanel.  This event only
  754.              * applies to such subclasses.
  755.              * A handler can return false to cancel the close.
  756.              * @param {Ext.Panel} p The Panel being closed.
  757.              */
  758.             'beforeclose',
  759.             /**
  760.              * @event close
  761.              * Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
  762.              * Panel subclasses do (like {@link Ext.Window}) or a Panel within a Ext.TabPanel.
  763.              * @param {Ext.Panel} p The Panel that has been closed.
  764.              */
  765.             'close',
  766.             /**
  767.              * @event activate
  768.              * Fires after the Panel has been visually activated.
  769.              * Note that Panels do not directly support being activated, but some Panel subclasses
  770.              * do (like {@link Ext.Window}). Panels which are child Components of a TabPanel fire the
  771.              * activate and deactivate events under the control of the TabPanel.
  772.              * @param {Ext.Panel} p The Panel that has been activated.
  773.              */
  774.             'activate',
  775.             /**
  776.              * @event deactivate
  777.              * Fires after the Panel has been visually deactivated.
  778.              * Note that Panels do not directly support being deactivated, but some Panel subclasses
  779.              * do (like {@link Ext.Window}). Panels which are child Components of a TabPanel fire the
  780.              * activate and deactivate events under the control of the TabPanel.
  781.              * @param {Ext.Panel} p The Panel that has been deactivated.
  782.              */
  783.             'deactivate'
  784.         );
  785.         if(this.unstyled){
  786.             this.baseCls = 'x-plain';
  787.         }
  788.         // shortcuts
  789.         if(this.tbar){
  790.             this.elements += ',tbar';
  791.             if(Ext.isObject(this.tbar)){
  792.                 this.topToolbar = this.tbar;
  793.             }
  794.             delete this.tbar;
  795.         }
  796.         if(this.bbar){
  797.             this.elements += ',bbar';
  798.             if(Ext.isObject(this.bbar)){
  799.                 this.bottomToolbar = this.bbar;
  800.             }
  801.             delete this.bbar;
  802.         }
  803.         if(this.header === true){
  804.             this.elements += ',header';
  805.             delete this.header;
  806.         }else if(this.headerCfg || (this.title && this.header !== false)){
  807.             this.elements += ',header';
  808.         }
  809.         if(this.footerCfg || this.footer === true){
  810.             this.elements += ',footer';
  811.             delete this.footer;
  812.         }
  813.         if(this.buttons){
  814.             this.elements += ',footer';
  815.             var btns = this.buttons;
  816.             /**
  817.              * This Panel's Array of buttons as created from the <tt>{@link #buttons}</tt>
  818.              * config property. Read only.
  819.              * @type Array
  820.              * @property buttons
  821.              */
  822.             this.buttons = [];
  823.             for(var i = 0, len = btns.length; i < len; i++) {
  824.                 if(btns[i].render){ // button instance
  825.                     this.buttons.push(btns[i]);
  826.                 }else if(btns[i].xtype){
  827.                     this.buttons.push(Ext.create(btns[i], 'button'));
  828.                 }else{
  829.                     this.addButton(btns[i]);
  830.                 }
  831.             }
  832.         }
  833.         if(this.fbar){
  834.             this.elements += ',footer';
  835.         }
  836.         if(this.autoLoad){
  837.             this.on('render', this.doAutoLoad, this, {delay:10});
  838.         }
  839.     },
  840.     // private
  841.     createElement : function(name, pnode){
  842.         if(this[name]){
  843.             pnode.appendChild(this[name].dom);
  844.             return;
  845.         }
  846.         if(name === 'bwrap' || this.elements.indexOf(name) != -1){
  847.             if(this[name+'Cfg']){
  848.                 this[name] = Ext.fly(pnode).createChild(this[name+'Cfg']);
  849.             }else{
  850.                 var el = document.createElement('div');
  851.                 el.className = this[name+'Cls'];
  852.                 this[name] = Ext.get(pnode.appendChild(el));
  853.             }
  854.             if(this[name+'CssClass']){
  855.                 this[name].addClass(this[name+'CssClass']);
  856.             }
  857.             if(this[name+'Style']){
  858.                 this[name].applyStyles(this[name+'Style']);
  859.             }
  860.         }
  861.     },
  862.     // private
  863.     onRender : function(ct, position){
  864.         Ext.Panel.superclass.onRender.call(this, ct, position);
  865.         this.createClasses();
  866.         var el = this.el,
  867.             d = el.dom,
  868.             bw;
  869.         el.addClass(this.baseCls);
  870.         if(d.firstChild){ // existing markup
  871.             this.header = el.down('.'+this.headerCls);
  872.             this.bwrap = el.down('.'+this.bwrapCls);
  873.             var cp = this.bwrap ? this.bwrap : el;
  874.             this.tbar = cp.down('.'+this.tbarCls);
  875.             this.body = cp.down('.'+this.bodyCls);
  876.             this.bbar = cp.down('.'+this.bbarCls);
  877.             this.footer = cp.down('.'+this.footerCls);
  878.             this.fromMarkup = true;
  879.         }
  880.         if (this.preventBodyReset === true) {
  881.             el.addClass('x-panel-reset');
  882.         }
  883.         if(this.cls){
  884.             el.addClass(this.cls);
  885.         }
  886.         if(this.buttons){
  887.             this.elements += ',footer';
  888.         }
  889.         // This block allows for maximum flexibility and performance when using existing markup
  890.         // framing requires special markup
  891.         if(this.frame){
  892.             el.insertHtml('afterBegin', String.format(Ext.Element.boxMarkup, this.baseCls));
  893.             this.createElement('header', d.firstChild.firstChild.firstChild);
  894.             this.createElement('bwrap', d);
  895.             // append the mid and bottom frame to the bwrap
  896.             bw = this.bwrap.dom;
  897.             var ml = d.childNodes[1], bl = d.childNodes[2];
  898.             bw.appendChild(ml);
  899.             bw.appendChild(bl);
  900.             var mc = bw.firstChild.firstChild.firstChild;
  901.             this.createElement('tbar', mc);
  902.             this.createElement('body', mc);
  903.             this.createElement('bbar', mc);
  904.             this.createElement('footer', bw.lastChild.firstChild.firstChild);
  905.             if(!this.footer){
  906.                 this.bwrap.dom.lastChild.className += ' x-panel-nofooter';
  907.             }
  908.         }else{
  909.             this.createElement('header', d);
  910.             this.createElement('bwrap', d);
  911.             // append the mid and bottom frame to the bwrap
  912.             bw = this.bwrap.dom;
  913.             this.createElement('tbar', bw);
  914.             this.createElement('body', bw);
  915.             this.createElement('bbar', bw);
  916.             this.createElement('footer', bw);
  917.             if(!this.header){
  918.                 this.body.addClass(this.bodyCls + '-noheader');
  919.                 if(this.tbar){
  920.                     this.tbar.addClass(this.tbarCls + '-noheader');
  921.                 }
  922.             }
  923.         }
  924.         if(this.padding !== undefined) {
  925.             this.body.setStyle('padding', this.body.addUnits(this.padding));
  926.         }
  927.         if(this.border === false){
  928.             this.el.addClass(this.baseCls + '-noborder');
  929.             this.body.addClass(this.bodyCls + '-noborder');
  930.             if(this.header){
  931.                 this.header.addClass(this.headerCls + '-noborder');
  932.             }
  933.             if(this.footer){
  934.                 this.footer.addClass(this.footerCls + '-noborder');
  935.             }
  936.             if(this.tbar){
  937.                 this.tbar.addClass(this.tbarCls + '-noborder');
  938.             }
  939.             if(this.bbar){
  940.                 this.bbar.addClass(this.bbarCls + '-noborder');
  941.             }
  942.         }
  943.         if(this.bodyBorder === false){
  944.            this.body.addClass(this.bodyCls + '-noborder');
  945.         }
  946.         this.bwrap.enableDisplayMode('block');
  947.         if(this.header){
  948.             this.header.unselectable();
  949.             // for tools, we need to wrap any existing header markup
  950.             if(this.headerAsText){
  951.                 this.header.dom.innerHTML =
  952.                     '<span class="' + this.headerTextCls + '">'+this.header.dom.innerHTML+'</span>';
  953.                 if(this.iconCls){
  954.                     this.setIconClass(this.iconCls);
  955.                 }
  956.             }
  957.         }
  958.         if(this.floating){
  959.             this.makeFloating(this.floating);
  960.         }
  961.         if(this.collapsible){
  962.             this.tools = this.tools ? this.tools.slice(0) : [];
  963.             if(!this.hideCollapseTool){
  964.                 this.tools[this.collapseFirst?'unshift':'push']({
  965.                     id: 'toggle',
  966.                     handler : this.toggleCollapse,
  967.                     scope: this
  968.                 });
  969.             }
  970.             if(this.titleCollapse && this.header){
  971.                 this.mon(this.header, 'click', this.toggleCollapse, this);
  972.                 this.header.setStyle('cursor', 'pointer');
  973.             }
  974.         }
  975.         if(this.tools){
  976.             var ts = this.tools;
  977.             this.tools = {};
  978.             this.addTool.apply(this, ts);
  979.         }else{
  980.             this.tools = {};
  981.         }
  982.         if(this.buttons && this.buttons.length > 0){
  983.             this.fbar = new Ext.Toolbar({
  984.                 items: this.buttons,
  985.                 toolbarCls: 'x-panel-fbar'
  986.             });
  987.         }
  988.         this.toolbars = [];
  989.         if(this.fbar){
  990.             this.fbar = Ext.create(this.fbar, 'toolbar');
  991.             this.fbar.enableOverflow = false;
  992.             if(this.fbar.items){
  993.                 this.fbar.items.each(function(c){
  994.                     c.minWidth = c.minWidth || this.minButtonWidth;
  995.                 }, this);
  996.             }
  997.             this.fbar.toolbarCls = 'x-panel-fbar';
  998.             var bct = this.footer.createChild({cls: 'x-panel-btns x-panel-btns-'+this.buttonAlign});
  999.             this.fbar.ownerCt = this;
  1000.             this.fbar.render(bct);
  1001.             bct.createChild({cls:'x-clear'});
  1002.             this.toolbars.push(this.fbar);
  1003.         }
  1004.         if(this.tbar && this.topToolbar){
  1005.             if(Ext.isArray(this.topToolbar)){
  1006.                 this.topToolbar = new Ext.Toolbar(this.topToolbar);
  1007.             }else if(!this.topToolbar.events){
  1008.                 this.topToolbar = Ext.create(this.topToolbar, 'toolbar');
  1009.             }
  1010.             this.topToolbar.ownerCt = this;
  1011.             this.topToolbar.render(this.tbar);
  1012.             this.toolbars.push(this.topToolbar);
  1013.         }
  1014.         if(this.bbar && this.bottomToolbar){
  1015.             if(Ext.isArray(this.bottomToolbar)){
  1016.                 this.bottomToolbar = new Ext.Toolbar(this.bottomToolbar);
  1017.             }else if(!this.bottomToolbar.events){
  1018.                 this.bottomToolbar = Ext.create(this.bottomToolbar, 'toolbar');
  1019.             }
  1020.             this.bottomToolbar.ownerCt = this;
  1021.             this.bottomToolbar.render(this.bbar);
  1022.             this.toolbars.push(this.bottomToolbar);
  1023.         }
  1024.         Ext.each(this.toolbars, function(tb){
  1025.             tb.on({
  1026.                 scope: this,
  1027.                 afterlayout: this.syncHeight,
  1028.                 remove: this.syncHeight
  1029.             });
  1030.         }, this);
  1031.     },
  1032.     /**
  1033.      * Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
  1034.      * icon class if one has already been set and fire the {@link #iconchange} event after completion.
  1035.      * @param {String} cls The new CSS class name
  1036.      */
  1037.     setIconClass : function(cls){
  1038.         var old = this.iconCls;
  1039.         this.iconCls = cls;
  1040.         if(this.rendered && this.header){
  1041.             if(this.frame){
  1042.                 this.header.addClass('x-panel-icon');
  1043.                 this.header.replaceClass(old, this.iconCls);
  1044.             }else{
  1045.                 var hd = this.header.dom;
  1046.                 var img = hd.firstChild && String(hd.firstChild.tagName).toLowerCase() == 'img' ? hd.firstChild : null;
  1047.                 if(img){
  1048.                     Ext.fly(img).replaceClass(old, this.iconCls);
  1049.                 }else{
  1050.                     Ext.DomHelper.insertBefore(hd.firstChild, {
  1051.                         tag:'img', src: Ext.BLANK_IMAGE_URL, cls:'x-panel-inline-icon '+this.iconCls
  1052.                     });
  1053.                  }
  1054.             }
  1055.         }
  1056.         this.fireEvent('iconchange', this, cls, old);
  1057.     },
  1058.     // private
  1059.     makeFloating : function(cfg){
  1060.         this.floating = true;
  1061.         this.el = new Ext.Layer(
  1062.             Ext.isObject(cfg) ? cfg : {
  1063.                 shadow: this.shadow !== undefined ? this.shadow : 'sides',
  1064.                 shadowOffset: this.shadowOffset,
  1065.                 constrain:false,
  1066.                 shim: this.shim === false ? false : undefined
  1067.             }, this.el
  1068.         );
  1069.     },
  1070.     /**
  1071.      * Returns the {@link Ext.Toolbar toolbar} from the top (<tt>{@link #tbar}</tt>) section of the panel.
  1072.      * @return {Ext.Toolbar} The toolbar
  1073.      */
  1074.     getTopToolbar : function(){
  1075.         return this.topToolbar;
  1076.     },
  1077.     /**
  1078.      * Returns the {@link Ext.Toolbar toolbar} from the bottom (<tt>{@link #bbar}</tt>) section of the panel.
  1079.      * @return {Ext.Toolbar} The toolbar
  1080.      */
  1081.     getBottomToolbar : function(){
  1082.         return this.bottomToolbar;
  1083.     },
  1084.     /**
  1085.      * Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
  1086.      * approach is to add buttons via the {@link #buttons} config.
  1087.      * @param {String/Object} config A valid {@link Ext.Button} config.  A string will become the text for a default
  1088.      * button config, an object will be treated as a button config object.
  1089.      * @param {Function} handler The function to be called on button {@link Ext.Button#click}
  1090.      * @param {Object} scope The scope to use for the button handler function
  1091.      * @return {Ext.Button} The button that was added
  1092.      */
  1093.     addButton : function(config, handler, scope){
  1094.         var bc = {
  1095.             handler: handler,
  1096.             scope: scope,
  1097.             minWidth: this.minButtonWidth,
  1098.             hideParent:true
  1099.         };
  1100.         if(typeof config == "string"){
  1101.             bc.text = config;
  1102.         }else{
  1103.             Ext.apply(bc, config);
  1104.         }
  1105.         var btn = new Ext.Button(bc);
  1106.         if(!this.buttons){
  1107.             this.buttons = [];
  1108.         }
  1109.         this.buttons.push(btn);
  1110.         return btn;
  1111.     },
  1112.     // private
  1113.     addTool : function(){
  1114.         if(!this[this.toolTarget]) { // no where to render tools!
  1115.             return;
  1116.         }
  1117.         if(!this.toolTemplate){
  1118.             // initialize the global tool template on first use
  1119.             var tt = new Ext.Template(
  1120.                  '<div class="x-tool x-tool-{id}">&#160;</div>'
  1121.             );
  1122.             tt.disableFormats = true;
  1123.             tt.compile();
  1124.             Ext.Panel.prototype.toolTemplate = tt;
  1125.         }
  1126.         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
  1127.             var tc = a[i];
  1128.             if(!this.tools[tc.id]){
  1129.                 var overCls = 'x-tool-'+tc.id+'-over';
  1130.                 var t = this.toolTemplate.insertFirst((tc.align !== 'left') ? this[this.toolTarget] : this[this.toolTarget].child('span'), tc, true);
  1131.                 this.tools[tc.id] = t;
  1132.                 t.enableDisplayMode('block');
  1133.                 this.mon(t, 'click',  this.createToolHandler(t, tc, overCls, this));
  1134.                 if(tc.on){
  1135.                     this.mon(t, tc.on);
  1136.                 }
  1137.                 if(tc.hidden){
  1138.                     t.hide();
  1139.                 }
  1140.                 if(tc.qtip){
  1141.                     if(Ext.isObject(tc.qtip)){
  1142.                         Ext.QuickTips.register(Ext.apply({
  1143.                               target: t.id
  1144.                         }, tc.qtip));
  1145.                     } else {
  1146.                         t.dom.qtip = tc.qtip;
  1147.                     }
  1148.                 }
  1149.                 t.addClassOnOver(overCls);
  1150.             }
  1151.         }
  1152.     },
  1153.     onLayout : function(){
  1154.         if(this.toolbars.length > 0){
  1155.             this.duringLayout = true;
  1156.             Ext.each(this.toolbars, function(tb){
  1157.                 tb.doLayout();
  1158.             });
  1159.             delete this.duringLayout;
  1160.             this.syncHeight();
  1161.         }
  1162.     },
  1163.     syncHeight : function(){
  1164.         if(!(this.autoHeight || this.duringLayout)){
  1165.             var last = this.lastSize;
  1166.             if(last && !Ext.isEmpty(last.height)){
  1167.                 var old = last.height, h = this.el.getHeight();
  1168.                 if(old != 'auto' && old != h){
  1169.                     var bd = this.body, bdh = bd.getHeight();
  1170.                     h = Math.max(bdh + old - h, 0);
  1171.                     if(bdh > 0 && bdh != h){
  1172.                         bd.setHeight(h);
  1173.                         if(Ext.isIE && h <= 0){
  1174.                             return;
  1175.                         }
  1176.                         var sz = bd.getSize();
  1177.                         this.fireEvent('bodyresize', sz.width, sz.height);
  1178.                     }
  1179.                 }
  1180.             }
  1181.         }
  1182.     },
  1183.     // private
  1184.     onShow : function(){
  1185.         if(this.floating){
  1186.             return this.el.show();
  1187.         }
  1188.         Ext.Panel.superclass.onShow.call(this);
  1189.     },
  1190.     // private
  1191.     onHide : function(){
  1192.         if(this.floating){
  1193.             return this.el.hide();
  1194.         }
  1195.         Ext.Panel.superclass.onHide.call(this);
  1196.     },
  1197.     // private
  1198.     createToolHandler : function(t, tc, overCls, panel){
  1199.         return function(e){
  1200.             t.removeClass(overCls);
  1201.             if(tc.stopEvent !== false){
  1202.                 e.stopEvent();
  1203.             }
  1204.             if(tc.handler){
  1205.                 tc.handler.call(tc.scope || t, e, t, panel, tc);
  1206.             }
  1207.         };
  1208.     },
  1209.     // private
  1210.     afterRender : function(){
  1211.         if(this.floating && !this.hidden){
  1212.             this.el.show();
  1213.         }
  1214.         if(this.title){
  1215.             this.setTitle(this.title);
  1216.         }
  1217.         this.setAutoScroll();
  1218.         if(this.html){
  1219.             this.body.update(Ext.isObject(this.html) ?
  1220.                              Ext.DomHelper.markup(this.html) :
  1221.                              this.html);
  1222.             delete this.html;
  1223.         }
  1224.         if(this.contentEl){
  1225.             var ce = Ext.getDom(this.contentEl);
  1226.             Ext.fly(ce).removeClass(['x-hidden', 'x-hide-display']);
  1227.             this.body.dom.appendChild(ce);
  1228.         }
  1229.         if(this.collapsed){
  1230.             this.collapsed = false;
  1231.             this.collapse(false);
  1232.         }
  1233.         Ext.Panel.superclass.afterRender.call(this); // do sizing calcs last
  1234.         this.initEvents();
  1235.     },
  1236.     // private
  1237.     setAutoScroll : function(){
  1238.         if(this.rendered && this.autoScroll){
  1239.             var el = this.body || this.el;
  1240.             if(el){
  1241.                 el.setOverflow('auto');
  1242.             }
  1243.         }
  1244.     },
  1245.     // private
  1246.     getKeyMap : function(){
  1247.         if(!this.keyMap){
  1248.             this.keyMap = new Ext.KeyMap(this.el, this.keys);
  1249.         }
  1250.         return this.keyMap;
  1251.     },
  1252.     // private
  1253.     initEvents : function(){
  1254.         if(this.keys){
  1255.             this.getKeyMap();
  1256.         }
  1257.         if(this.draggable){
  1258.             this.initDraggable();
  1259.         }
  1260.     },
  1261.     // private
  1262.     initDraggable : function(){
  1263.         /**
  1264.          * <p>If this Panel is configured {@link #draggable}, this property will contain
  1265.          * an instance of {@link Ext.dd.DragSource} which handles dragging the Panel.</p>
  1266.          * The developer must provide implementations of the abstract methods of {@link Ext.dd.DragSource}
  1267.          * in order to supply behaviour for each stage of the drag/drop process. See {@link #draggable}.
  1268.          * @type Ext.dd.DragSource.
  1269.          * @property dd
  1270.          */
  1271.         this.dd = new Ext.Panel.DD(this, typeof this.draggable == 'boolean' ? null : this.draggable);
  1272.     },
  1273.     // private
  1274.     beforeEffect : function(){
  1275.         if(this.floating){
  1276.             this.el.beforeAction();
  1277.         }
  1278.         this.el.addClass('x-panel-animated');
  1279.     },
  1280.     // private
  1281.     afterEffect : function(){
  1282.         this.syncShadow();
  1283.         this.el.removeClass('x-panel-animated');
  1284.     },
  1285.     // private - wraps up an animation param with internal callbacks
  1286.     createEffect : function(a, cb, scope){
  1287.         var o = {
  1288.             scope:scope,
  1289.             block:true
  1290.         };
  1291.         if(a === true){
  1292.             o.callback = cb;
  1293.             return o;
  1294.         }else if(!a.callback){
  1295.             o.callback = cb;
  1296.         }else { // wrap it up
  1297.             o.callback = function(){
  1298.                 cb.call(scope);
  1299.                 Ext.callback(a.callback, a.scope);
  1300.             };
  1301.         }
  1302.         return Ext.applyIf(o, a);
  1303.     },
  1304.     /**
  1305.      * Collapses the panel body so that it becomes hidden.  Fires the {@link #beforecollapse} event which will
  1306.      * cancel the collapse action if it returns false.
  1307.      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
  1308.      * {@link #animCollapse} panel config)
  1309.      * @return {Ext.Panel} this
  1310.      */
  1311.     collapse : function(animate){
  1312.         if(this.collapsed || this.el.hasFxBlock() || this.fireEvent('beforecollapse', this, animate) === false){
  1313.             return;
  1314.         }
  1315.         var doAnim = animate === true || (animate !== false && this.animCollapse);
  1316.         this.beforeEffect();
  1317.         this.onCollapse(doAnim, animate);
  1318.         return this;
  1319.     },
  1320.     // private
  1321.     onCollapse : function(doAnim, animArg){
  1322.         if(doAnim){
  1323.             this[this.collapseEl].slideOut(this.slideAnchor,
  1324.                     Ext.apply(this.createEffect(animArg||true, this.afterCollapse, this),
  1325.                         this.collapseDefaults));
  1326.         }else{
  1327.             this[this.collapseEl].hide();
  1328.             this.afterCollapse();
  1329.         }
  1330.     },
  1331.     // private
  1332.     afterCollapse : function(){
  1333.         this.collapsed = true;
  1334.         this.el.addClass(this.collapsedCls);
  1335.         this.afterEffect();
  1336.         this.fireEvent('collapse', this);
  1337.     },
  1338.     /**
  1339.      * Expands the panel body so that it becomes visible.  Fires the {@link #beforeexpand} event which will
  1340.      * cancel the expand action if it returns false.
  1341.      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
  1342.      * {@link #animCollapse} panel config)
  1343.      * @return {Ext.Panel} this
  1344.      */
  1345.     expand : function(animate){
  1346.         if(!this.collapsed || this.el.hasFxBlock() || this.fireEvent('beforeexpand', this, animate) === false){
  1347.             return;
  1348.         }
  1349.         var doAnim = animate === true || (animate !== false && this.animCollapse);
  1350.         this.el.removeClass(this.collapsedCls);
  1351.         this.beforeEffect();
  1352.         this.onExpand(doAnim, animate);
  1353.         return this;
  1354.     },
  1355.     // private
  1356.     onExpand : function(doAnim, animArg){
  1357.         if(doAnim){
  1358.             this[this.collapseEl].slideIn(this.slideAnchor,
  1359.                     Ext.apply(this.createEffect(animArg||true, this.afterExpand, this),
  1360.                         this.expandDefaults));
  1361.         }else{
  1362.             this[this.collapseEl].show();
  1363.             this.afterExpand();
  1364.         }
  1365.     },
  1366.     // private
  1367.     afterExpand : function(){
  1368.         this.collapsed = false;
  1369.         this.afterEffect();
  1370.         if(this.deferLayout !== undefined){
  1371.             this.doLayout(true);
  1372.         }
  1373.         this.fireEvent('expand', this);
  1374.     },
  1375.     /**
  1376.      * Shortcut for performing an {@link #expand} or {@link #collapse} based on the current state of the panel.
  1377.      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
  1378.      * {@link #animCollapse} panel config)
  1379.      * @return {Ext.Panel} this
  1380.      */
  1381.     toggleCollapse : function(animate){
  1382.         this[this.collapsed ? 'expand' : 'collapse'](animate);
  1383.         return this;
  1384.     },
  1385.     // private
  1386.     onDisable : function(){
  1387.         if(this.rendered && this.maskDisabled){
  1388.             this.el.mask();
  1389.         }
  1390.         Ext.Panel.superclass.onDisable.call(this);
  1391.     },
  1392.     // private
  1393.     onEnable : function(){
  1394.         if(this.rendered && this.maskDisabled){
  1395.             this.el.unmask();
  1396.         }
  1397.         Ext.Panel.superclass.onEnable.call(this);
  1398.     },
  1399.     // private
  1400.     onResize : function(w, h){
  1401.         if(w !== undefined || h !== undefined){
  1402.             if(!this.collapsed){
  1403.                 if(typeof w == 'number'){
  1404.                     w = this.adjustBodyWidth(w - this.getFrameWidth());
  1405.                     if(this.tbar){
  1406.                         this.tbar.setWidth(w);
  1407.                         if(this.topToolbar){
  1408.                             this.topToolbar.setSize(w);
  1409.                         }
  1410.                     }
  1411.                     if(this.bbar){
  1412.                         this.bbar.setWidth(w);
  1413.                         if(this.bottomToolbar){
  1414.                             this.bottomToolbar.setSize(w);
  1415.                         }
  1416.                     }
  1417.                     if(this.fbar){
  1418.                         var f = this.fbar,
  1419.                             fWidth = 1,
  1420.                             strict = Ext.isStrict;
  1421.                         if(this.buttonAlign == 'left'){
  1422.                            fWidth = w - f.container.getFrameWidth('lr');
  1423.                         }else{
  1424.                             //center/right alignment off in webkit
  1425.                             if(Ext.isIE || Ext.isWebKit){
  1426.                                 //center alignment ok on webkit.
  1427.                                 //right broken in both, center on IE
  1428.                                 if(!(this.buttonAlign == 'center' && Ext.isWebKit) && (!strict || (!Ext.isIE8 && strict))){
  1429.                                     (function(){
  1430.                                         f.setWidth(f.getEl().child('.x-toolbar-ct').getWidth());
  1431.                                     }).defer(1);
  1432.                                 }else{
  1433.                                     fWidth = 'auto';
  1434.                                 }
  1435.                             }else{
  1436.                                 fWidth = 'auto';
  1437.                             }
  1438.                         }
  1439.                         f.setWidth(fWidth);
  1440.                     }
  1441.                     this.body.setWidth(w);
  1442.                 }else if(w == 'auto'){
  1443.                     this.body.setWidth(w);
  1444.                 }
  1445.                 if(typeof h == 'number'){
  1446.                     h = Math.max(0, this.adjustBodyHeight(h - this.getFrameHeight()));
  1447.                     this.body.setHeight(h);
  1448.                 }else if(h == 'auto'){
  1449.                     this.body.setHeight(h);
  1450.                 }
  1451.                 if(this.disabled && this.el._mask){
  1452.                     this.el._mask.setSize(this.el.dom.clientWidth, this.el.getHeight());
  1453.                 }
  1454.             }else{
  1455.                 this.queuedBodySize = {width: w, height: h};
  1456.                 if(!this.queuedExpand && this.allowQueuedExpand !== false){
  1457.                     this.queuedExpand = true;
  1458.                     this.on('expand', function(){
  1459.                         delete this.queuedExpand;
  1460.                         this.onResize(this.queuedBodySize.width, this.queuedBodySize.height);
  1461.                         this.doLayout();
  1462.                     }, this, {single:true});
  1463.                 }
  1464.             }
  1465.             this.fireEvent('bodyresize', this, w, h);
  1466.         }
  1467.         this.syncShadow();
  1468.     },
  1469.     // private
  1470.     adjustBodyHeight : function(h){
  1471.         return h;
  1472.     },
  1473.     // private
  1474.     adjustBodyWidth : function(w){
  1475.         return w;
  1476.     },
  1477.     // private
  1478.     onPosition : function(){
  1479.         this.syncShadow();
  1480.     },
  1481.     /**
  1482.      * Returns the width in pixels of the framing elements of this panel (not including the body width).  To
  1483.      * retrieve the body width see {@link #getInnerWidth}.
  1484.      * @return {Number} The frame width
  1485.      */
  1486.     getFrameWidth : function(){
  1487.         var w = this.el.getFrameWidth('lr')+this.bwrap.getFrameWidth('lr');
  1488.         if(this.frame){
  1489.             var l = this.bwrap.dom.firstChild;
  1490.             w += (Ext.fly(l).getFrameWidth('l') + Ext.fly(l.firstChild).getFrameWidth('r'));
  1491.             var mc = this.bwrap.dom.firstChild.firstChild.firstChild;
  1492.             w += Ext.fly(mc).getFrameWidth('lr');
  1493.         }
  1494.         return w;
  1495.     },
  1496.     /**
  1497.      * Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
  1498.      * header and footer elements, but not including the body height).  To retrieve the body height see {@link #getInnerHeight}.
  1499.      * @return {Number} The frame height
  1500.      */
  1501.     getFrameHeight : function(){
  1502.         var h  = this.el.getFrameWidth('tb')+this.bwrap.getFrameWidth('tb');
  1503.         h += (this.tbar ? this.tbar.getHeight() : 0) +
  1504.              (this.bbar ? this.bbar.getHeight() : 0);
  1505.         if(this.frame){
  1506.             var hd = this.el.dom.firstChild;
  1507.             var ft = this.bwrap.dom.lastChild;
  1508.             h += (hd.offsetHeight + ft.offsetHeight);
  1509.             var mc = this.bwrap.dom.firstChild.firstChild.firstChild;
  1510.             h += Ext.fly(mc).getFrameWidth('tb');
  1511.         }else{
  1512.             h += (this.header ? this.header.getHeight() : 0) +
  1513.                 (this.footer ? this.footer.getHeight() : 0);
  1514.         }
  1515.         return h;
  1516.     },
  1517.     /**
  1518.      * Returns the width in pixels of the body element (not including the width of any framing elements).
  1519.      * For the frame width see {@link #getFrameWidth}.
  1520.      * @return {Number} The body width
  1521.      */
  1522.     getInnerWidth : function(){
  1523.         return this.getSize().width - this.getFrameWidth();
  1524.     },
  1525.     /**
  1526.      * Returns the height in pixels of the body element (not including the height of any framing elements).
  1527.      * For the frame height see {@link #getFrameHeight}.
  1528.      * @return {Number} The body height
  1529.      */
  1530.     getInnerHeight : function(){
  1531.         return this.getSize().height - this.getFrameHeight();
  1532.     },
  1533.     // private
  1534.     syncShadow : function(){
  1535.         if(this.floating){
  1536.             this.el.sync(true);
  1537.         }
  1538.     },
  1539.     // private
  1540.     getLayoutTarget : function(){
  1541.         return this.body;
  1542.     },
  1543.     /**
  1544.      * <p>Sets the title text for the panel and optionally the {@link #iconCls icon class}.</p>
  1545.      * <p>In order to be able to set the title, a header element must have been created
  1546.      * for the Panel. This is triggered either by configuring the Panel with a non-blank <tt>{@link #title}</tt>,
  1547.      * or configuring it with <tt><b>{@link #header}: true</b></tt>.</p>
  1548.      * @param {String} title The title text to set
  1549.      * @param {String} iconCls (optional) {@link #iconCls iconCls} A user-defined CSS class that provides the icon image for this panel
  1550.      */
  1551.     setTitle : function(title, iconCls){
  1552.         this.title = title;
  1553.         if(this.header && this.headerAsText){
  1554.             this.header.child('span').update(title);
  1555.         }
  1556.         if(iconCls){
  1557.             this.setIconClass(iconCls);
  1558.         }
  1559.         this.fireEvent('titlechange', this, title);
  1560.         return this;
  1561.     },
  1562.     /**
  1563.      * Get the {@link Ext.Updater} for this panel. Enables you to perform Ajax updates of this panel's body.
  1564.      * @return {Ext.Updater} The Updater
  1565.      */
  1566.     getUpdater : function(){
  1567.         return this.body.getUpdater();
  1568.     },
  1569.      /**
  1570.      * Loads this content panel immediately with content returned from an XHR call.
  1571.      * @param {Object/String/Function} config A config object containing any of the following options:
  1572. <pre><code>
  1573. panel.load({
  1574.     url: "your-url.php",
  1575.     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
  1576.     callback: yourFunction,
  1577.     scope: yourObject, // optional scope for the callback
  1578.     discardUrl: false,
  1579.     nocache: false,
  1580.     text: "Loading...",
  1581.     timeout: 30,
  1582.     scripts: false
  1583. });
  1584. </code></pre>
  1585.      * The only required property is url. The optional properties nocache, text and scripts
  1586.      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their
  1587.      * associated property on this panel Updater instance.
  1588.      * @return {Ext.Panel} this
  1589.      */
  1590.     load : function(){
  1591.         var um = this.body.getUpdater();
  1592.         um.update.apply(um, arguments);
  1593.         return this;
  1594.     },
  1595.     // private
  1596.     beforeDestroy : function(){
  1597.         if(this.header){
  1598.             this.header.removeAllListeners();
  1599.             if(this.headerAsText){
  1600.                 Ext.Element.uncache(this.header.child('span'));
  1601.             }
  1602.         }
  1603.         Ext.Element.uncache(
  1604.             this.header,
  1605.             this.tbar,
  1606.             this.bbar,
  1607.             this.footer,
  1608.             this.body,
  1609.             this.bwrap
  1610.         );
  1611.         if(this.tools){
  1612.             for(var k in this.tools){
  1613.                 Ext.destroy(this.tools[k]);
  1614.             }
  1615.         }
  1616.         if(this.buttons){
  1617.             for(var b in this.buttons){
  1618.                 Ext.destroy(this.buttons[b]);
  1619.             }
  1620.         }
  1621.         Ext.destroy(this.toolbars);
  1622.         Ext.Panel.superclass.beforeDestroy.call(this);
  1623.     },
  1624.     // private
  1625.     createClasses : function(){
  1626.         this.headerCls = this.baseCls + '-header';
  1627.         this.headerTextCls = this.baseCls + '-header-text';
  1628.         this.bwrapCls = this.baseCls + '-bwrap';
  1629.         this.tbarCls = this.baseCls + '-tbar';
  1630.         this.bodyCls = this.baseCls + '-body';
  1631.         this.bbarCls = this.baseCls + '-bbar';
  1632.         this.footerCls = this.baseCls + '-footer';
  1633.     },
  1634.     // private
  1635.     createGhost : function(cls, useShim, appendTo){
  1636.         var el = document.createElement('div');
  1637.         el.className = 'x-panel-ghost ' + (cls ? cls : '');
  1638.         if(this.header){
  1639.             el.appendChild(this.el.dom.firstChild.cloneNode(true));
  1640.         }
  1641.         Ext.fly(el.appendChild(document.createElement('ul'))).setHeight(this.bwrap.getHeight());
  1642.         el.style.width = this.el.dom.offsetWidth + 'px';;
  1643.         if(!appendTo){
  1644.             this.container.dom.appendChild(el);
  1645.         }else{
  1646.             Ext.getDom(appendTo).appendChild(el);
  1647.         }
  1648.         if(useShim !== false && this.el.useShim !== false){
  1649.             var layer = new Ext.Layer({shadow:false, useDisplay:true, constrain:false}, el);
  1650.             layer.show();
  1651.             return layer;
  1652.         }else{
  1653.             return new Ext.Element(el);
  1654.         }
  1655.     },
  1656.     // private
  1657.     doAutoLoad : function(){
  1658.         var u = this.body.getUpdater();
  1659.         if(this.renderer){
  1660.             u.setRenderer(this.renderer);
  1661.         }
  1662.         u.update(Ext.isObject(this.autoLoad) ? this.autoLoad : {url: this.autoLoad});
  1663.     },
  1664.     /**
  1665.      * Retrieve a tool by id.
  1666.      * @param {String} id
  1667.      * @return {Object} tool
  1668.      */
  1669.     getTool : function(id) {
  1670.         return this.tools[id];
  1671.     }
  1672. /**
  1673.  * @cfg {String} autoEl @hide
  1674.  */
  1675. });
  1676. Ext.reg('panel', Ext.Panel);