Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git] / docs / source / Window.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.Window"></div>/**
10  * @class Ext.Window
11  * @extends Ext.Panel
12  * <p>A specialized panel intended for use as an application window.  Windows are floated, {@link #resizable}, and
13  * {@link #draggable} by default.  Windows can be {@link #maximizable maximized} to fill the viewport,
14  * restored to their prior size, and can be {@link #minimize}d.</p>
15  * <p>Windows can also be linked to a {@link Ext.WindowGroup} or managed by the {@link Ext.WindowMgr} to provide
16  * grouping, activation, to front, to back and other application-specific behavior.</p>
17  * <p>By default, Windows will be rendered to document.body. To {@link #constrain} a Window to another element
18  * specify {@link Ext.Component#renderTo renderTo}.</p>
19  * <p><b>Note:</b> By default, the <code>{@link #closable close}</code> header tool <i>destroys</i> the Window resulting in
20  * destruction of any child Components. This makes the Window object, and all its descendants <b>unusable</b>. To enable
21  * re-use of a Window, use <b><code>{@link #closeAction closeAction: 'hide'}</code></b>.</p>
22  * @constructor
23  * @param {Object} config The config object
24  * @xtype window
25  */
26 Ext.Window = Ext.extend(Ext.Panel, {
27     <div id="cfg-Ext.Window-x"></div>/**
28      * @cfg {Number} x
29      * The X position of the left edge of the window on initial showing. Defaults to centering the Window within
30      * the width of the Window's container {@link Ext.Element Element) (The Element that the Window is rendered to).
31      */
32     <div id="cfg-Ext.Window-y"></div>/**
33      * @cfg {Number} y
34      * The Y position of the top edge of the window on initial showing. Defaults to centering the Window within
35      * the height of the Window's container {@link Ext.Element Element) (The Element that the Window is rendered to).
36      */
37     <div id="cfg-Ext.Window-modal"></div>/**
38      * @cfg {Boolean} modal
39      * True to make the window modal and mask everything behind it when displayed, false to display it without
40      * restricting access to other UI elements (defaults to false).
41      */
42     <div id="cfg-Ext.Window-animateTarget"></div>/**
43      * @cfg {String/Element} animateTarget
44      * Id or element from which the window should animate while opening (defaults to null with no animation).
45      */
46     <div id="cfg-Ext.Window-resizeHandles"></div>/**
47      * @cfg {String} resizeHandles
48      * A valid {@link Ext.Resizable} handles config string (defaults to 'all').  Only applies when resizable = true.
49      */
50     <div id="cfg-Ext.Window-manager"></div>/**
51      * @cfg {Ext.WindowGroup} manager
52      * A reference to the WindowGroup that should manage this window (defaults to {@link Ext.WindowMgr}).
53      */
54     <div id="cfg-Ext.Window-defaultButton"></div>/**
55     * @cfg {String/Number/Component} defaultButton
56     * <p>Specifies a Component to receive focus when this Window is focussed.</p>
57     * <p>This may be one of:</p><div class="mdetail-params"><ul>
58     * <li>The index of a footer Button.</li>
59     * <li>The id of a Component.</li>
60     * <li>A Component.</li>
61     * </ul></div>
62     */
63     <div id="cfg-Ext.Window-onEsc"></div>/**
64     * @cfg {Function} onEsc
65     * Allows override of the built-in processing for the escape key. Default action
66     * is to close the Window (performing whatever action is specified in {@link #closeAction}.
67     * To prevent the Window closing when the escape key is pressed, specify this as
68     * Ext.emptyFn (See {@link Ext#emptyFn}).
69     */
70     <div id="cfg-Ext.Window-collapsed"></div>/**
71      * @cfg {Boolean} collapsed
72      * True to render the window collapsed, false to render it expanded (defaults to false). Note that if
73      * {@link #expandOnShow} is true (the default) it will override the <tt>collapsed</tt> config and the window
74      * will always be expanded when shown.
75      */
76     <div id="cfg-Ext.Window-maximized"></div>/**
77      * @cfg {Boolean} maximized
78      * True to initially display the window in a maximized state. (Defaults to false).
79      */
80
81     <div id="cfg-Ext.Window-baseCls"></div>/**
82     * @cfg {String} baseCls
83     * The base CSS class to apply to this panel's element (defaults to 'x-window').
84     */
85     baseCls : 'x-window',
86     <div id="cfg-Ext.Window-resizable"></div>/**
87      * @cfg {Boolean} resizable
88      * True to allow user resizing at each edge and corner of the window, false to disable resizing (defaults to true).
89      */
90     resizable : true,
91     <div id="cfg-Ext.Window-draggable"></div>/**
92      * @cfg {Boolean} draggable
93      * True to allow the window to be dragged by the header bar, false to disable dragging (defaults to true).  Note
94      * that by default the window will be centered in the viewport, so if dragging is disabled the window may need
95      * to be positioned programmatically after render (e.g., myWindow.setPosition(100, 100);).
96      */
97     draggable : true,
98     <div id="cfg-Ext.Window-closable"></div>/**
99      * @cfg {Boolean} closable
100      * <p>True to display the 'close' tool button and allow the user to close the window, false to
101      * hide the button and disallow closing the window (defaults to true).</p>
102      * <p>By default, when close is requested by either clicking the close button in the header
103      * or pressing ESC when the Window has focus, the {@link #close} method will be called. This
104      * will <i>{@link Ext.Component#destroy destroy}</i> the Window and its content meaning that
105      * it may not be reused.</p>
106      * <p>To make closing a Window <i>hide</i> the Window so that it may be reused, set
107      * {@link #closeAction} to 'hide'.
108      */
109     closable : true,
110     <div id="cfg-Ext.Window-closeAction"></div>/**
111      * @cfg {String} closeAction
112      * <p>The action to take when the close header tool is clicked:
113      * <div class="mdetail-params"><ul>
114      * <li><b><code>'{@link #close}'</code></b> : <b>Default</b><div class="sub-desc">
115      * {@link #close remove} the window from the DOM and {@link Ext.Component#destroy destroy}
116      * it and all descendant Components. The window will <b>not</b> be available to be
117      * redisplayed via the {@link #show} method.
118      * </div></li>
119      * <li><b><code>'{@link #hide}'</code></b> : <div class="sub-desc">
120      * {@link #hide} the window by setting visibility to hidden and applying negative offsets.
121      * The window will be available to be redisplayed via the {@link #show} method.
122      * </div></li>
123      * </ul></div>
124      * <p><b>Note:</b> This setting does not affect the {@link #close} method
125      * which will always {@link Ext.Component#destroy destroy} the window. To
126      * programatically <i>hide</i> a window, call {@link #hide}.</p>
127      */
128     closeAction : 'close',
129     <div id="cfg-Ext.Window-constrain"></div>/**
130      * @cfg {Boolean} constrain
131      * True to constrain the window within its containing element, false to allow it to fall outside of its
132      * containing element. By default the window will be rendered to document.body.  To render and constrain the
133      * window within another element specify {@link #renderTo}.
134      * (defaults to false).  Optionally the header only can be constrained using {@link #constrainHeader}.
135      */
136     constrain : false,
137     <div id="cfg-Ext.Window-constrainHeader"></div>/**
138      * @cfg {Boolean} constrainHeader
139      * True to constrain the window header within its containing element (allowing the window body to fall outside
140      * of its containing element) or false to allow the header to fall outside its containing element (defaults to
141      * false). Optionally the entire window can be constrained using {@link #constrain}.
142      */
143     constrainHeader : false,
144     <div id="cfg-Ext.Window-plain"></div>/**
145      * @cfg {Boolean} plain
146      * True to render the window body with a transparent background so that it will blend into the framing
147      * elements, false to add a lighter background color to visually highlight the body element and separate it
148      * more distinctly from the surrounding frame (defaults to false).
149      */
150     plain : false,
151     <div id="cfg-Ext.Window-minimizable"></div>/**
152      * @cfg {Boolean} minimizable
153      * True to display the 'minimize' tool button and allow the user to minimize the window, false to hide the button
154      * and disallow minimizing the window (defaults to false).  Note that this button provides no implementation --
155      * the behavior of minimizing a window is implementation-specific, so the minimize event must be handled and a
156      * custom minimize behavior implemented for this option to be useful.
157      */
158     minimizable : false,
159     <div id="cfg-Ext.Window-maximizable"></div>/**
160      * @cfg {Boolean} maximizable
161      * True to display the 'maximize' tool button and allow the user to maximize the window, false to hide the button
162      * and disallow maximizing the window (defaults to false).  Note that when a window is maximized, the tool button
163      * will automatically change to a 'restore' button with the appropriate behavior already built-in that will
164      * restore the window to its previous size.
165      */
166     maximizable : false,
167     <div id="cfg-Ext.Window-minHeight"></div>/**
168      * @cfg {Number} minHeight
169      * The minimum height in pixels allowed for this window (defaults to 100).  Only applies when resizable = true.
170      */
171     minHeight : 100,
172     <div id="cfg-Ext.Window-minWidth"></div>/**
173      * @cfg {Number} minWidth
174      * The minimum width in pixels allowed for this window (defaults to 200).  Only applies when resizable = true.
175      */
176     minWidth : 200,
177     <div id="cfg-Ext.Window-expandOnShow"></div>/**
178      * @cfg {Boolean} expandOnShow
179      * True to always expand the window when it is displayed, false to keep it in its current state (which may be
180      * {@link #collapsed}) when displayed (defaults to true).
181      */
182     expandOnShow : true,
183
184     // inherited docs, same default
185     collapsible : false,
186
187     <div id="cfg-Ext.Window-initHidden"></div>/**
188      * @cfg {Boolean} initHidden
189      * True to hide the window until show() is explicitly called (defaults to true).
190      * @deprecated
191      */
192     initHidden : undefined,
193
194     <div id="cfg-Ext.Window-hidden"></div>/**
195      * @cfg {Boolean} hidden
196      * Render this component hidden (default is <tt>true</tt>). If <tt>true</tt>, the
197      * {@link #hide} method will be called internally.
198      */
199     hidden : true,
200
201     // The following configs are set to provide the basic functionality of a window.
202     // Changing them would require additional code to handle correctly and should
203     // usually only be done in subclasses that can provide custom behavior.  Changing them
204     // may have unexpected or undesirable results.
205     <div id="cfg-Ext.Window-elements"></div>/** @cfg {String} elements @hide */
206     elements : 'header,body',
207     <div id="cfg-Ext.Window-frame"></div>/** @cfg {Boolean} frame @hide */
208     frame : true,
209     <div id="cfg-Ext.Window-floating"></div>/** @cfg {Boolean} floating @hide */
210     floating : true,
211
212     // private
213     initComponent : function(){
214         this.initTools();
215         Ext.Window.superclass.initComponent.call(this);
216         this.addEvents(
217             <div id="event-Ext.Window-activate"></div>/**
218              * @event activate
219              * Fires after the window has been visually activated via {@link #setActive}.
220              * @param {Ext.Window} this
221              */
222             <div id="event-Ext.Window-deactivate"></div>/**
223              * @event deactivate
224              * Fires after the window has been visually deactivated via {@link #setActive}.
225              * @param {Ext.Window} this
226              */
227             <div id="event-Ext.Window-resize"></div>/**
228              * @event resize
229              * Fires after the window has been resized.
230              * @param {Ext.Window} this
231              * @param {Number} width The window's new width
232              * @param {Number} height The window's new height
233              */
234             'resize',
235             <div id="event-Ext.Window-maximize"></div>/**
236              * @event maximize
237              * Fires after the window has been maximized.
238              * @param {Ext.Window} this
239              */
240             'maximize',
241             <div id="event-Ext.Window-minimize"></div>/**
242              * @event minimize
243              * Fires after the window has been minimized.
244              * @param {Ext.Window} this
245              */
246             'minimize',
247             <div id="event-Ext.Window-restore"></div>/**
248              * @event restore
249              * Fires after the window has been restored to its original size after being maximized.
250              * @param {Ext.Window} this
251              */
252             'restore'
253         );
254         // for backwards compat, this should be removed at some point
255         if(Ext.isDefined(this.initHidden)){
256             this.hidden = this.initHidden;
257         }
258         if(this.hidden === false){
259             this.hidden = true;
260             this.show();
261         }
262     },
263
264     // private
265     getState : function(){
266         return Ext.apply(Ext.Window.superclass.getState.call(this) || {}, this.getBox(true));
267     },
268
269     // private
270     onRender : function(ct, position){
271         Ext.Window.superclass.onRender.call(this, ct, position);
272
273         if(this.plain){
274             this.el.addClass('x-window-plain');
275         }
276
277         // this element allows the Window to be focused for keyboard events
278         this.focusEl = this.el.createChild({
279                     tag: 'a', href:'#', cls:'x-dlg-focus',
280                     tabIndex:'-1', html: '&#160;'});
281         this.focusEl.swallowEvent('click', true);
282
283         this.proxy = this.el.createProxy('x-window-proxy');
284         this.proxy.enableDisplayMode('block');
285
286         if(this.modal){
287             this.mask = this.container.createChild({cls:'ext-el-mask'}, this.el.dom);
288             this.mask.enableDisplayMode('block');
289             this.mask.hide();
290             this.mon(this.mask, 'click', this.focus, this);
291         }
292         if(this.maximizable){
293             this.mon(this.header, 'dblclick', this.toggleMaximize, this);
294         }
295     },
296
297     // private
298     initEvents : function(){
299         Ext.Window.superclass.initEvents.call(this);
300         if(this.animateTarget){
301             this.setAnimateTarget(this.animateTarget);
302         }
303
304         if(this.resizable){
305             this.resizer = new Ext.Resizable(this.el, {
306                 minWidth: this.minWidth,
307                 minHeight:this.minHeight,
308                 handles: this.resizeHandles || 'all',
309                 pinned: true,
310                 resizeElement : this.resizerAction,
311                 handleCls: 'x-window-handle'
312             });
313             this.resizer.window = this;
314             this.mon(this.resizer, 'beforeresize', this.beforeResize, this);
315         }
316
317         if(this.draggable){
318             this.header.addClass('x-window-draggable');
319         }
320         this.mon(this.el, 'mousedown', this.toFront, this);
321         this.manager = this.manager || Ext.WindowMgr;
322         this.manager.register(this);
323         if(this.maximized){
324             this.maximized = false;
325             this.maximize();
326         }
327         if(this.closable){
328             var km = this.getKeyMap();
329             km.on(27, this.onEsc, this);
330             km.disable();
331         }
332     },
333
334     initDraggable : function(){
335         <div id="prop-Ext.Window-dd"></div>/**
336          * If this Window is configured {@link #draggable}, this property will contain
337          * an instance of {@link Ext.dd.DD} which handles dragging the Window's DOM Element.
338          * @type Ext.dd.DD
339          * @property dd
340          */
341         this.dd = new Ext.Window.DD(this);
342     },
343
344    // private
345     onEsc : function(k, e){
346         e.stopEvent();
347         this[this.closeAction]();
348     },
349
350     // private
351     beforeDestroy : function(){
352         if (this.rendered){
353             this.hide();
354           if(this.doAnchor){
355                 Ext.EventManager.removeResizeListener(this.doAnchor, this);
356               Ext.EventManager.un(window, 'scroll', this.doAnchor, this);
357             }
358             Ext.destroy(
359                 this.focusEl,
360                 this.resizer,
361                 this.dd,
362                 this.proxy,
363                 this.mask
364             );
365         }
366         Ext.Window.superclass.beforeDestroy.call(this);
367     },
368
369     // private
370     onDestroy : function(){
371         if(this.manager){
372             this.manager.unregister(this);
373         }
374         Ext.Window.superclass.onDestroy.call(this);
375     },
376
377     // private
378     initTools : function(){
379         if(this.minimizable){
380             this.addTool({
381                 id: 'minimize',
382                 handler: this.minimize.createDelegate(this, [])
383             });
384         }
385         if(this.maximizable){
386             this.addTool({
387                 id: 'maximize',
388                 handler: this.maximize.createDelegate(this, [])
389             });
390             this.addTool({
391                 id: 'restore',
392                 handler: this.restore.createDelegate(this, []),
393                 hidden:true
394             });
395         }
396         if(this.closable){
397             this.addTool({
398                 id: 'close',
399                 handler: this[this.closeAction].createDelegate(this, [])
400             });
401         }
402     },
403
404     // private
405     resizerAction : function(){
406         var box = this.proxy.getBox();
407         this.proxy.hide();
408         this.window.handleResize(box);
409         return box;
410     },
411
412     // private
413     beforeResize : function(){
414         this.resizer.minHeight = Math.max(this.minHeight, this.getFrameHeight() + 40); // 40 is a magic minimum content size?
415         this.resizer.minWidth = Math.max(this.minWidth, this.getFrameWidth() + 40);
416         this.resizeBox = this.el.getBox();
417     },
418
419     // private
420     updateHandles : function(){
421         if(Ext.isIE && this.resizer){
422             this.resizer.syncHandleHeight();
423             this.el.repaint();
424         }
425     },
426
427     // private
428     handleResize : function(box){
429         var rz = this.resizeBox;
430         if(rz.x != box.x || rz.y != box.y){
431             this.updateBox(box);
432         }else{
433             this.setSize(box);
434         }
435         this.focus();
436         this.updateHandles();
437         this.saveState();
438         this.doLayout();
439     },
440
441     <div id="method-Ext.Window-focus"></div>/**
442      * Focuses the window.  If a defaultButton is set, it will receive focus, otherwise the
443      * window itself will receive focus.
444      */
445     focus : function(){
446         var f = this.focusEl, db = this.defaultButton, t = typeof db;
447         if(Ext.isDefined(db)){
448             if(Ext.isNumber(db) && this.fbar){
449                 f = this.fbar.items.get(db);
450             }else if(Ext.isString(db)){
451                 f = Ext.getCmp(db);
452             }else{
453                 f = db;
454             }
455         }
456         f = f || this.focusEl;
457         f.focus.defer(10, f);
458     },
459
460     <div id="method-Ext.Window-setAnimateTarget"></div>/**
461      * Sets the target element from which the window should animate while opening.
462      * @param {String/Element} el The target element or id
463      */
464     setAnimateTarget : function(el){
465         el = Ext.get(el);
466         this.animateTarget = el;
467     },
468
469     // private
470     beforeShow : function(){
471         delete this.el.lastXY;
472         delete this.el.lastLT;
473         if(this.x === undefined || this.y === undefined){
474             var xy = this.el.getAlignToXY(this.container, 'c-c');
475             var pos = this.el.translatePoints(xy[0], xy[1]);
476             this.x = this.x === undefined? pos.left : this.x;
477             this.y = this.y === undefined? pos.top : this.y;
478         }
479         this.el.setLeftTop(this.x, this.y);
480
481         if(this.expandOnShow){
482             this.expand(false);
483         }
484
485         if(this.modal){
486             Ext.getBody().addClass('x-body-masked');
487             this.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
488             this.mask.show();
489         }
490     },
491
492     <div id="method-Ext.Window-show"></div>/**
493      * Shows the window, rendering it first if necessary, or activates it and brings it to front if hidden.
494      * @param {String/Element} animateTarget (optional) The target element or id from which the window should
495      * animate while opening (defaults to null with no animation)
496      * @param {Function} callback (optional) A callback function to call after the window is displayed
497      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Window.
498      * @return {Ext.Window} this
499      */
500     show : function(animateTarget, cb, scope){
501         if(!this.rendered){
502             this.render(Ext.getBody());
503         }
504         if(this.hidden === false){
505             this.toFront();
506             return this;
507         }
508         if(this.fireEvent('beforeshow', this) === false){
509             return this;
510         }
511         if(cb){
512             this.on('show', cb, scope, {single:true});
513         }
514         this.hidden = false;
515         if(Ext.isDefined(animateTarget)){
516             this.setAnimateTarget(animateTarget);
517         }
518         this.beforeShow();
519         if(this.animateTarget){
520             this.animShow();
521         }else{
522             this.afterShow();
523         }
524         return this;
525     },
526
527     // private
528     afterShow : function(isAnim){
529         if (this.isDestroyed){
530             return false;
531         }
532         this.proxy.hide();
533         this.el.setStyle('display', 'block');
534         this.el.show();
535         if(this.maximized){
536             this.fitContainer();
537         }
538         if(Ext.isMac && Ext.isGecko2){ // work around stupid FF 2.0/Mac scroll bar bug
539             this.cascade(this.setAutoScroll);
540         }
541
542         if(this.monitorResize || this.modal || this.constrain || this.constrainHeader){
543             Ext.EventManager.onWindowResize(this.onWindowResize, this);
544         }
545         this.doConstrain();
546         this.doLayout();
547         if(this.keyMap){
548             this.keyMap.enable();
549         }
550         this.toFront();
551         this.updateHandles();
552         if(isAnim && (Ext.isIE || Ext.isWebKit)){
553             var sz = this.getSize();
554             this.onResize(sz.width, sz.height);
555         }
556         this.onShow();
557         this.fireEvent('show', this);
558     },
559
560     // private
561     animShow : function(){
562         this.proxy.show();
563         this.proxy.setBox(this.animateTarget.getBox());
564         this.proxy.setOpacity(0);
565         var b = this.getBox();
566         this.el.setStyle('display', 'none');
567         this.proxy.shift(Ext.apply(b, {
568             callback: this.afterShow.createDelegate(this, [true], false),
569             scope: this,
570             easing: 'easeNone',
571             duration: 0.25,
572             opacity: 0.5
573         }));
574     },
575
576     <div id="method-Ext.Window-hide"></div>/**
577      * Hides the window, setting it to invisible and applying negative offsets.
578      * @param {String/Element} animateTarget (optional) The target element or id to which the window should
579      * animate while hiding (defaults to null with no animation)
580      * @param {Function} callback (optional) A callback function to call after the window is hidden
581      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Window.
582      * @return {Ext.Window} this
583      */
584     hide : function(animateTarget, cb, scope){
585         if(this.hidden || this.fireEvent('beforehide', this) === false){
586             return this;
587         }
588         if(cb){
589             this.on('hide', cb, scope, {single:true});
590         }
591         this.hidden = true;
592         if(animateTarget !== undefined){
593             this.setAnimateTarget(animateTarget);
594         }
595         if(this.modal){
596             this.mask.hide();
597             Ext.getBody().removeClass('x-body-masked');
598         }
599         if(this.animateTarget){
600             this.animHide();
601         }else{
602             this.el.hide();
603             this.afterHide();
604         }
605         return this;
606     },
607
608     // private
609     afterHide : function(){
610         this.proxy.hide();
611         if(this.monitorResize || this.modal || this.constrain || this.constrainHeader){
612             Ext.EventManager.removeResizeListener(this.onWindowResize, this);
613         }
614         if(this.keyMap){
615             this.keyMap.disable();
616         }
617         this.onHide();
618         this.fireEvent('hide', this);
619     },
620
621     // private
622     animHide : function(){
623         this.proxy.setOpacity(0.5);
624         this.proxy.show();
625         var tb = this.getBox(false);
626         this.proxy.setBox(tb);
627         this.el.hide();
628         this.proxy.shift(Ext.apply(this.animateTarget.getBox(), {
629             callback: this.afterHide,
630             scope: this,
631             duration: 0.25,
632             easing: 'easeNone',
633             opacity: 0
634         }));
635     },
636
637     <div id="prop-Ext.Window-onShow"></div>/**
638      * Method that is called immediately before the <code>show</code> event is fired.
639      * Defaults to <code>Ext.emptyFn</code>.
640      */
641     onShow : Ext.emptyFn,
642
643     <div id="prop-Ext.Window-onHide"></div>/**
644      * Method that is called immediately before the <code>hide</code> event is fired.
645      * Defaults to <code>Ext.emptyFn</code>.
646      */
647     onHide : Ext.emptyFn,
648
649     // private
650     onWindowResize : function(){
651         if(this.maximized){
652             this.fitContainer();
653         }
654         if(this.modal){
655             this.mask.setSize('100%', '100%');
656             var force = this.mask.dom.offsetHeight;
657             this.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
658         }
659         this.doConstrain();
660     },
661
662     // private
663     doConstrain : function(){
664         if(this.constrain || this.constrainHeader){
665             var offsets;
666             if(this.constrain){
667                 offsets = {
668                     right:this.el.shadowOffset,
669                     left:this.el.shadowOffset,
670                     bottom:this.el.shadowOffset
671                 };
672             }else {
673                 var s = this.getSize();
674                 offsets = {
675                     right:-(s.width - 100),
676                     bottom:-(s.height - 25)
677                 };
678             }
679
680             var xy = this.el.getConstrainToXY(this.container, true, offsets);
681             if(xy){
682                 this.setPosition(xy[0], xy[1]);
683             }
684         }
685     },
686
687     // private - used for dragging
688     ghost : function(cls){
689         var ghost = this.createGhost(cls);
690         var box = this.getBox(true);
691         ghost.setLeftTop(box.x, box.y);
692         ghost.setWidth(box.width);
693         this.el.hide();
694         this.activeGhost = ghost;
695         return ghost;
696     },
697
698     // private
699     unghost : function(show, matchPosition){
700         if(!this.activeGhost) {
701             return;
702         }
703         if(show !== false){
704             this.el.show();
705             this.focus();
706             if(Ext.isMac && Ext.isGecko2){ // work around stupid FF 2.0/Mac scroll bar bug
707                 this.cascade(this.setAutoScroll);
708             }
709         }
710         if(matchPosition !== false){
711             this.setPosition(this.activeGhost.getLeft(true), this.activeGhost.getTop(true));
712         }
713         this.activeGhost.hide();
714         this.activeGhost.remove();
715         delete this.activeGhost;
716     },
717
718     <div id="method-Ext.Window-minimize"></div>/**
719      * Placeholder method for minimizing the window.  By default, this method simply fires the {@link #minimize} event
720      * since the behavior of minimizing a window is application-specific.  To implement custom minimize behavior,
721      * either the minimize event can be handled or this method can be overridden.
722      * @return {Ext.Window} this
723      */
724     minimize : function(){
725         this.fireEvent('minimize', this);
726         return this;
727     },
728
729     <div id="method-Ext.Window-close"></div>/**
730      * <p>Closes the Window, removes it from the DOM, {@link Ext.Component#destroy destroy}s
731      * the Window object and all its descendant Components. The {@link Ext.Panel#beforeclose beforeclose}
732      * event is fired before the close happens and will cancel the close action if it returns false.<p>
733      * <p><b>Note:</b> This method is not affected by the {@link #closeAction} setting which
734      * only affects the action triggered when clicking the {@link #closable 'close' tool in the header}.
735      * To hide the Window without destroying it, call {@link #hide}.</p>
736      */
737     close : function(){
738         if(this.fireEvent('beforeclose', this) !== false){
739             if(this.hidden){
740                 this.doClose();
741             }else{
742                 this.hide(null, this.doClose, this);
743             }
744         }
745     },
746
747     // private
748     doClose : function(){
749         this.fireEvent('close', this);
750         this.destroy();
751     },
752
753     <div id="method-Ext.Window-maximize"></div>/**
754      * Fits the window within its current container and automatically replaces
755      * the {@link #maximizable 'maximize' tool button} with the 'restore' tool button.
756      * Also see {@link #toggleMaximize}.
757      * @return {Ext.Window} this
758      */
759     maximize : function(){
760         if(!this.maximized){
761             this.expand(false);
762             this.restoreSize = this.getSize();
763             this.restorePos = this.getPosition(true);
764             if (this.maximizable){
765                 this.tools.maximize.hide();
766                 this.tools.restore.show();
767             }
768             this.maximized = true;
769             this.el.disableShadow();
770
771             if(this.dd){
772                 this.dd.lock();
773             }
774             if(this.collapsible){
775                 this.tools.toggle.hide();
776             }
777             this.el.addClass('x-window-maximized');
778             this.container.addClass('x-window-maximized-ct');
779
780             this.setPosition(0, 0);
781             this.fitContainer();
782             this.fireEvent('maximize', this);
783         }
784         return this;
785     },
786
787     <div id="method-Ext.Window-restore"></div>/**
788      * Restores a {@link #maximizable maximized}  window back to its original
789      * size and position prior to being maximized and also replaces
790      * the 'restore' tool button with the 'maximize' tool button.
791      * Also see {@link #toggleMaximize}.
792      * @return {Ext.Window} this
793      */
794     restore : function(){
795         if(this.maximized){
796             var t = this.tools;
797             this.el.removeClass('x-window-maximized');
798             if(t.restore){
799                 t.restore.hide();
800             }
801             if(t.maximize){
802                 t.maximize.show();
803             }
804             this.setPosition(this.restorePos[0], this.restorePos[1]);
805             this.setSize(this.restoreSize.width, this.restoreSize.height);
806             delete this.restorePos;
807             delete this.restoreSize;
808             this.maximized = false;
809             this.el.enableShadow(true);
810
811             if(this.dd){
812                 this.dd.unlock();
813             }
814             if(this.collapsible && t.toggle){
815                 t.toggle.show();
816             }
817             this.container.removeClass('x-window-maximized-ct');
818
819             this.doConstrain();
820             this.fireEvent('restore', this);
821         }
822         return this;
823     },
824
825     <div id="method-Ext.Window-toggleMaximize"></div>/**
826      * A shortcut method for toggling between {@link #maximize} and {@link #restore} based on the current maximized
827      * state of the window.
828      * @return {Ext.Window} this
829      */
830     toggleMaximize : function(){
831         return this[this.maximized ? 'restore' : 'maximize']();
832     },
833
834     // private
835     fitContainer : function(){
836         var vs = this.container.getViewSize(false);
837         this.setSize(vs.width, vs.height);
838     },
839
840     // private
841     // z-index is managed by the WindowManager and may be overwritten at any time
842     setZIndex : function(index){
843         if(this.modal){
844             this.mask.setStyle('z-index', index);
845         }
846         this.el.setZIndex(++index);
847         index += 5;
848
849         if(this.resizer){
850             this.resizer.proxy.setStyle('z-index', ++index);
851         }
852
853         this.lastZIndex = index;
854     },
855
856     <div id="method-Ext.Window-alignTo"></div>/**
857      * Aligns the window to the specified element
858      * @param {Mixed} element The element to align to.
859      * @param {String} position (optional, defaults to "tl-bl?") The position to align to (see {@link Ext.Element#alignTo} for more details).
860      * @param {Array} offsets (optional) Offset the positioning by [x, y]
861      * @return {Ext.Window} this
862      */
863     alignTo : function(element, position, offsets){
864         var xy = this.el.getAlignToXY(element, position, offsets);
865         this.setPagePosition(xy[0], xy[1]);
866         return this;
867     },
868
869     <div id="method-Ext.Window-anchorTo"></div>/**
870      * Anchors this window to another element and realigns it when the window is resized or scrolled.
871      * @param {Mixed} element The element to align to.
872      * @param {String} position The position to align to (see {@link Ext.Element#alignTo} for more details)
873      * @param {Array} offsets (optional) Offset the positioning by [x, y]
874      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
875      * is a number, it is used as the buffer delay (defaults to 50ms).
876      * @return {Ext.Window} this
877      */
878     anchorTo : function(el, alignment, offsets, monitorScroll){
879       if(this.doAnchor){
880           Ext.EventManager.removeResizeListener(this.doAnchor, this);
881           Ext.EventManager.un(window, 'scroll', this.doAnchor, this);
882       }
883       this.doAnchor = function(){
884           this.alignTo(el, alignment, offsets);
885       };
886       Ext.EventManager.onWindowResize(this.doAnchor, this);
887
888       var tm = typeof monitorScroll;
889       if(tm != 'undefined'){
890           Ext.EventManager.on(window, 'scroll', this.doAnchor, this,
891               {buffer: tm == 'number' ? monitorScroll : 50});
892       }
893       return this;
894     },
895
896     <div id="method-Ext.Window-toFront"></div>/**
897      * Brings this window to the front of any other visible windows
898      * @param {Boolean} e (optional) Specify <tt>false</tt> to prevent the window from being focused.
899      * @return {Ext.Window} this
900      */
901     toFront : function(e){
902         if(this.manager.bringToFront(this)){
903             if(!e || !e.getTarget().focus){
904                 this.focus();
905             }
906         }
907         return this;
908     },
909
910     <div id="method-Ext.Window-setActive"></div>/**
911      * Makes this the active window by showing its shadow, or deactivates it by hiding its shadow.  This method also
912      * fires the {@link #activate} or {@link #deactivate} event depending on which action occurred. This method is
913      * called internally by {@link Ext.WindowMgr}.
914      * @param {Boolean} active True to activate the window, false to deactivate it (defaults to false)
915      */
916     setActive : function(active){
917         if(active){
918             if(!this.maximized){
919                 this.el.enableShadow(true);
920             }
921             this.fireEvent('activate', this);
922         }else{
923             this.el.disableShadow();
924             this.fireEvent('deactivate', this);
925         }
926     },
927
928     <div id="method-Ext.Window-toBack"></div>/**
929      * Sends this window to the back of (lower z-index than) any other visible windows
930      * @return {Ext.Window} this
931      */
932     toBack : function(){
933         this.manager.sendToBack(this);
934         return this;
935     },
936
937     <div id="method-Ext.Window-center"></div>/**
938      * Centers this window in the viewport
939      * @return {Ext.Window} this
940      */
941     center : function(){
942         var xy = this.el.getAlignToXY(this.container, 'c-c');
943         this.setPagePosition(xy[0], xy[1]);
944         return this;
945     }
946
947     <div id="cfg-Ext.Window-autoWidth"></div>/**
948      * @cfg {Boolean} autoWidth @hide
949      **/
950 });
951 Ext.reg('window', Ext.Window);
952
953 // private - custom Window DD implementation
954 Ext.Window.DD = function(win){
955     this.win = win;
956     Ext.Window.DD.superclass.constructor.call(this, win.el.id, 'WindowDD-'+win.id);
957     this.setHandleElId(win.header.id);
958     this.scroll = false;
959 };
960
961 Ext.extend(Ext.Window.DD, Ext.dd.DD, {
962     moveOnly:true,
963     headerOffsets:[100, 25],
964     startDrag : function(){
965         var w = this.win;
966         this.proxy = w.ghost();
967         if(w.constrain !== false){
968             var so = w.el.shadowOffset;
969             this.constrainTo(w.container, {right: so, left: so, bottom: so});
970         }else if(w.constrainHeader !== false){
971             var s = this.proxy.getSize();
972             this.constrainTo(w.container, {right: -(s.width-this.headerOffsets[0]), bottom: -(s.height-this.headerOffsets[1])});
973         }
974     },
975     b4Drag : Ext.emptyFn,
976
977     onDrag : function(e){
978         this.alignElWithMouse(this.proxy, e.getPageX(), e.getPageY());
979     },
980
981     endDrag : function(e){
982         this.win.unghost();
983         this.win.saveState();
984     }
985 });
986 </pre>    \r
987 </body>\r
988 </html>