Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / Splitter.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-resizer-Splitter'>/**
19 </span> * @class Ext.resizer.Splitter
20  * @extends Ext.Component
21  * &lt;p&gt;This class functions &lt;b&gt;between siblings of a {@link Ext.layout.container.VBox VBox} or {@link Ext.layout.container.HBox HBox}
22  * layout&lt;/b&gt; to resize both immediate siblings.&lt;/p&gt;
23  * &lt;p&gt;By default it will set the size of both siblings. &lt;b&gt;One&lt;/b&gt; of the siblings may be configured with
24  * &lt;code&gt;{@link Ext.Component#maintainFlex maintainFlex}: true&lt;/code&gt; which will cause it not to receive a new size explicitly, but to be resized
25  * by the layout.&lt;/p&gt;
26  * &lt;p&gt;A Splitter may be configured to show a centered mini-collapse tool orientated to collapse the {@link #collapseTarget}.
27  * The Splitter will then call that sibling Panel's {@link Ext.panel.Panel#collapse collapse} or {@link Ext.panel.Panel#expand expand} method
28  * to perform the appropriate operation (depending on the sibling collapse state). To create the mini-collapse tool but take care
29  * of collapsing yourself, configure the splitter with &lt;code&gt;{@link #performCollapse} false&lt;/code&gt;.&lt;/p&gt;
30  */
31 Ext.define('Ext.resizer.Splitter', {
32     extend: 'Ext.Component',
33     requires: ['Ext.XTemplate'],
34     uses: ['Ext.resizer.SplitterTracker'],
35     alias: 'widget.splitter',
36
37     renderTpl: [
38         '&lt;tpl if=&quot;collapsible===true&quot;&gt;&lt;div class=&quot;' + Ext.baseCSSPrefix + 'collapse-el ' + Ext.baseCSSPrefix + 'layout-split-{collapseDir}&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;/tpl&gt;'
39     ],
40
41     baseCls: Ext.baseCSSPrefix + 'splitter',
42     collapsedClsInternal: Ext.baseCSSPrefix + 'splitter-collapsed',
43
44 <span id='Ext-resizer-Splitter-cfg-collapsible'>    /**
45 </span>     * @cfg {Boolean} collapsible
46      * &lt;code&gt;true&lt;/code&gt; to show a mini-collapse tool in the Splitter to toggle expand and collapse on the {@link #collapseTarget} Panel.
47      * Defaults to the {@link Ext.panel.Panel#collapsible collapsible} setting of the Panel.
48      */
49     collapsible: false,
50
51 <span id='Ext-resizer-Splitter-cfg-performCollapse'>    /**
52 </span>     * @cfg {Boolean} performCollapse
53      * &lt;p&gt;Set to &lt;code&gt;false&lt;/code&gt; to prevent this Splitter's mini-collapse tool from managing the collapse
54      * state of the {@link #collapseTarget}.&lt;/p&gt;
55      */
56
57 <span id='Ext-resizer-Splitter-cfg-collapseOnDblClick'>    /**
58 </span>     * @cfg {Boolean} collapseOnDblClick
59      * &lt;code&gt;true&lt;/code&gt; to enable dblclick to toggle expand and collapse on the {@link #collapseTarget} Panel.
60      */
61     collapseOnDblClick: true,
62
63 <span id='Ext-resizer-Splitter-cfg-defaultSplitMin'>    /**
64 </span>     * @cfg {Number} defaultSplitMin
65      * Provides a default minimum width or height for the two components
66      * that the splitter is between.
67      */
68     defaultSplitMin: 40,
69
70 <span id='Ext-resizer-Splitter-cfg-defaultSplitMax'>    /**
71 </span>     * @cfg {Number} defaultSplitMax
72      * Provides a default maximum width or height for the two components
73      * that the splitter is between.
74      */
75     defaultSplitMax: 1000,
76     
77 <span id='Ext-resizer-Splitter-cfg-collapsedCls'>    /**
78 </span>     * @cfg {String} collapsedCls
79      * A class to add to the splitter when it is collapsed. See {@link #collapsible}.
80      */
81
82     width: 5,
83     height: 5,
84
85 <span id='Ext-resizer-Splitter-cfg-collapseTarget'>    /**
86 </span>     * @cfg {Mixed} collapseTarget
87      * &lt;p&gt;A string describing the relative position of the immediate sibling Panel to collapse. May be 'prev' or 'next' (Defaults to 'next')&lt;/p&gt;
88      * &lt;p&gt;Or the immediate sibling Panel to collapse.&lt;/p&gt;
89      * &lt;p&gt;The orientation of the mini-collapse tool will be inferred from this setting.&lt;/p&gt;
90      * &lt;p&gt;&lt;b&gt;Note that only Panels may be collapsed.&lt;/b&gt;&lt;/p&gt;
91      */
92     collapseTarget: 'next',
93
94 <span id='Ext-resizer-Splitter-property-orientation'>    /**
95 </span>     * @property orientation
96      * @type String
97      * Orientation of this Splitter. &lt;code&gt;'vertical'&lt;/code&gt; when used in an hbox layout, &lt;code&gt;'horizontal'&lt;/code&gt;
98      * when used in a vbox layout.
99      */
100
101     onRender: function() {
102         var me = this,
103             target = me.getCollapseTarget(),
104             collapseDir = me.getCollapseDirection();
105
106         Ext.applyIf(me.renderData, {
107             collapseDir: collapseDir,
108             collapsible: me.collapsible || target.collapsible
109         });
110         Ext.applyIf(me.renderSelectors, {
111             collapseEl: '.' + Ext.baseCSSPrefix + 'collapse-el'
112         });
113
114         this.callParent(arguments);
115
116         // Add listeners on the mini-collapse tool unless performCollapse is set to false
117         if (me.performCollapse !== false) {
118             if (me.renderData.collapsible) {
119                 me.mon(me.collapseEl, 'click', me.toggleTargetCmp, me);
120             }
121             if (me.collapseOnDblClick) {
122                 me.mon(me.el, 'dblclick', me.toggleTargetCmp, me);
123             }
124         }
125
126         // Ensure the mini collapse icon is set to the correct direction when the target is collapsed/expanded by any means
127         me.mon(target, 'collapse', me.onTargetCollapse, me);
128         me.mon(target, 'expand', me.onTargetExpand, me);
129
130         me.el.addCls(me.baseCls + '-' + me.orientation);
131         me.el.unselectable();
132
133         me.tracker = Ext.create('Ext.resizer.SplitterTracker', {
134             el: me.el
135         });
136
137         // Relay the most important events to our owner (could open wider later):
138         me.relayEvents(me.tracker, [ 'beforedragstart', 'dragstart', 'dragend' ]);
139     },
140
141     getCollapseDirection: function() {
142         var me = this,
143             idx,
144             type = me.ownerCt.layout.type;
145
146         // Avoid duplication of string tests.
147         // Create a two bit truth table of the configuration of the Splitter:
148         // Collapse Target | orientation
149         //        0              0             = next, horizontal
150         //        0              1             = next, vertical
151         //        1              0             = prev, horizontal
152         //        1              1             = prev, vertical
153         if (me.collapseTarget.isComponent) {
154             idx = Number(me.ownerCt.items.indexOf(me.collapseTarget) == me.ownerCt.items.indexOf(me) - 1) &lt;&lt; 1 | Number(type == 'hbox');
155         } else {
156             idx = Number(me.collapseTarget == 'prev') &lt;&lt; 1 | Number(type == 'hbox');
157         }
158
159         // Read the data out the truth table
160         me.orientation = ['horizontal', 'vertical'][idx &amp; 1];
161         return ['bottom', 'right', 'top', 'left'][idx];
162     },
163
164     getCollapseTarget: function() {
165         var me = this;
166         
167         return me.collapseTarget.isComponent ? me.collapseTarget : me.collapseTarget == 'prev' ? me.previousSibling() : me.nextSibling();
168     },
169
170     onTargetCollapse: function(target) {
171         this.el.addCls([this.collapsedClsInternal, this.collapsedCls]);
172     },
173
174     onTargetExpand: function(target) {
175         this.el.removeCls([this.collapsedClsInternal, this.collapsedCls]);
176     },
177
178     toggleTargetCmp: function(e, t) {
179         var cmp = this.getCollapseTarget();
180
181         if (cmp.isVisible()) {
182             // restore
183             if (cmp.collapsed) {
184                 cmp.expand(cmp.animCollapse);
185             // collapse
186             } else {
187                 cmp.collapse(this.renderData.collapseDir, cmp.animCollapse);
188             }
189         }
190     },
191
192     /*
193      * Work around IE bug. %age margins do not get recalculated on element resize unless repaint called.
194      */
195     setSize: function() {
196         var me = this;
197         me.callParent(arguments);
198         if (Ext.isIE) {
199             me.el.repaint();
200         }
201     }
202 });
203 </pre>
204 </body>
205 </html>