Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[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     <div id="cfg-Ext.Window-monitorResize"></div>/**
202     * @cfg {Boolean} monitorResize @hide
203     * This is automatically managed based on the value of constrain and constrainToHeader
204     */
205     monitorResize : true,
206
207     // The following configs are set to provide the basic functionality of a window.
208     // Changing them would require additional code to handle correctly and should
209     // usually only be done in subclasses that can provide custom behavior.  Changing them
210     // may have unexpected or undesirable results.
211     <div id="cfg-Ext.Window-elements"></div>/** @cfg {String} elements @hide */
212     elements : 'header,body',
213     <div id="cfg-Ext.Window-frame"></div>/** @cfg {Boolean} frame @hide */
214     frame : true,
215     <div id="cfg-Ext.Window-floating"></div>/** @cfg {Boolean} floating @hide */
216     floating : true,
217
218     // private
219     initComponent : function(){
220         this.initTools();
221         Ext.Window.superclass.initComponent.call(this);
222         this.addEvents(
223             <div id="event-Ext.Window-activate"></div>/**
224              * @event activate
225              * Fires after the window has been visually activated via {@link #setActive}.
226              * @param {Ext.Window} this
227              */
228             <div id="event-Ext.Window-deactivate"></div>/**
229              * @event deactivate
230              * Fires after the window has been visually deactivated via {@link #setActive}.
231              * @param {Ext.Window} this
232              */
233             <div id="event-Ext.Window-resize"></div>/**
234              * @event resize
235              * Fires after the window has been resized.
236              * @param {Ext.Window} this
237              * @param {Number} width The window's new width
238              * @param {Number} height The window's new height
239              */
240             'resize',
241             <div id="event-Ext.Window-maximize"></div>/**
242              * @event maximize
243              * Fires after the window has been maximized.
244              * @param {Ext.Window} this
245              */
246             'maximize',
247             <div id="event-Ext.Window-minimize"></div>/**
248              * @event minimize
249              * Fires after the window has been minimized.
250              * @param {Ext.Window} this
251              */
252             'minimize',
253             <div id="event-Ext.Window-restore"></div>/**
254              * @event restore
255              * Fires after the window has been restored to its original size after being maximized.
256              * @param {Ext.Window} this
257              */
258             'restore'
259         );
260         // for backwards compat, this should be removed at some point
261         if(Ext.isDefined(this.initHidden)){
262             this.hidden = this.initHidden;
263         }
264         if(this.hidden === false){
265             this.hidden = true;
266             this.show();
267         }
268     },
269
270     // private
271     getState : function(){
272         return Ext.apply(Ext.Window.superclass.getState.call(this) || {}, this.getBox(true));
273     },
274
275     // private
276     onRender : function(ct, position){
277         Ext.Window.superclass.onRender.call(this, ct, position);
278
279         if(this.plain){
280             this.el.addClass('x-window-plain');
281         }
282
283         // this element allows the Window to be focused for keyboard events
284         this.focusEl = this.el.createChild({
285                     tag: 'a', href:'#', cls:'x-dlg-focus',
286                     tabIndex:'-1', html: '&#160;'});
287         this.focusEl.swallowEvent('click', true);
288
289         this.proxy = this.el.createProxy('x-window-proxy');
290         this.proxy.enableDisplayMode('block');
291
292         if(this.modal){
293             this.mask = this.container.createChild({cls:'ext-el-mask'}, this.el.dom);
294             this.mask.enableDisplayMode('block');
295             this.mask.hide();
296             this.mon(this.mask, 'click', this.focus, this);
297         }
298         if(this.maximizable){
299             this.mon(this.header, 'dblclick', this.toggleMaximize, this);
300         }
301     },
302
303     // private
304     initEvents : function(){
305         Ext.Window.superclass.initEvents.call(this);
306         if(this.animateTarget){
307             this.setAnimateTarget(this.animateTarget);
308         }
309
310         if(this.resizable){
311             this.resizer = new Ext.Resizable(this.el, {
312                 minWidth: this.minWidth,
313                 minHeight:this.minHeight,
314                 handles: this.resizeHandles || 'all',
315                 pinned: true,
316                 resizeElement : this.resizerAction
317             });
318             this.resizer.window = this;
319             this.mon(this.resizer, 'beforeresize', this.beforeResize, this);
320         }
321
322         if(this.draggable){
323             this.header.addClass('x-window-draggable');
324         }
325         this.mon(this.el, 'mousedown', this.toFront, this);
326         this.manager = this.manager || Ext.WindowMgr;
327         this.manager.register(this);
328         if(this.maximized){
329             this.maximized = false;
330             this.maximize();
331         }
332         if(this.closable){
333             var km = this.getKeyMap();
334             km.on(27, this.onEsc, this);
335             km.disable();
336         }
337     },
338
339     initDraggable : function(){
340         <div id="prop-Ext.Window-dd"></div>/**
341          * If this Window is configured {@link #draggable}, this property will contain
342          * an instance of {@link Ext.dd.DD} which handles dragging the Window's DOM Element.
343          * @type Ext.dd.DD
344          * @property dd
345          */
346         this.dd = new Ext.Window.DD(this);
347     },
348
349    // private
350     onEsc : function(){
351         this[this.closeAction]();
352     },
353
354     // private
355     beforeDestroy : function(){
356         if (this.rendered){
357             this.hide();
358           if(this.doAnchor){
359                 Ext.EventManager.removeResizeListener(this.doAnchor, this);
360               Ext.EventManager.un(window, 'scroll', this.doAnchor, this);
361             }
362             Ext.destroy(
363                 this.focusEl,
364                 this.resizer,
365                 this.dd,
366                 this.proxy,
367                 this.mask
368             );
369         }
370         Ext.Window.superclass.beforeDestroy.call(this);
371     },
372
373     // private
374     onDestroy : function(){
375         if(this.manager){
376             this.manager.unregister(this);
377         }
378         Ext.Window.superclass.onDestroy.call(this);
379     },
380
381     // private
382     initTools : function(){
383         if(this.minimizable){
384             this.addTool({
385                 id: 'minimize',
386                 handler: this.minimize.createDelegate(this, [])
387             });
388         }
389         if(this.maximizable){
390             this.addTool({
391                 id: 'maximize',
392                 handler: this.maximize.createDelegate(this, [])
393             });
394             this.addTool({
395                 id: 'restore',
396                 handler: this.restore.createDelegate(this, []),
397                 hidden:true
398             });
399         }
400         if(this.closable){
401             this.addTool({
402                 id: 'close',
403                 handler: this[this.closeAction].createDelegate(this, [])
404             });
405         }
406     },
407
408     // private
409     resizerAction : function(){
410         var box = this.proxy.getBox();
411         this.proxy.hide();
412         this.window.handleResize(box);
413         return box;
414     },
415
416     // private
417     beforeResize : function(){
418         this.resizer.minHeight = Math.max(this.minHeight, this.getFrameHeight() + 40); // 40 is a magic minimum content size?
419         this.resizer.minWidth = Math.max(this.minWidth, this.getFrameWidth() + 40);
420         this.resizeBox = this.el.getBox();
421     },
422
423     // private
424     updateHandles : function(){
425         if(Ext.isIE && this.resizer){
426             this.resizer.syncHandleHeight();
427             this.el.repaint();
428         }
429     },
430
431     // private
432     handleResize : function(box){
433         var rz = this.resizeBox;
434         if(rz.x != box.x || rz.y != box.y){
435             this.updateBox(box);
436         }else{
437             this.setSize(box);
438         }
439         this.focus();
440         this.updateHandles();
441         this.saveState();
442     },
443
444     <div id="method-Ext.Window-focus"></div>/**
445      * Focuses the window.  If a defaultButton is set, it will receive focus, otherwise the
446      * window itself will receive focus.
447      */
448     focus : function(){
449         var f = this.focusEl, db = this.defaultButton, t = typeof db;
450         if(Ext.isDefined(db)){
451             if(Ext.isNumber(db) && this.fbar){
452                 f = this.fbar.items.get(db);
453             }else if(Ext.isString(db)){
454                 f = Ext.getCmp(db);
455             }else{
456                 f = db;
457             }
458         }
459         f = f || this.focusEl;
460         f.focus.defer(10, f);
461     },
462
463     <div id="method-Ext.Window-setAnimateTarget"></div>/**
464      * Sets the target element from which the window should animate while opening.
465      * @param {String/Element} el The target element or id
466      */
467     setAnimateTarget : function(el){
468         el = Ext.get(el);
469         this.animateTarget = el;
470     },
471
472     // private
473     beforeShow : function(){
474         delete this.el.lastXY;
475         delete this.el.lastLT;
476         if(this.x === undefined || this.y === undefined){
477             var xy = this.el.getAlignToXY(this.container, 'c-c');
478             var pos = this.el.translatePoints(xy[0], xy[1]);
479             this.x = this.x === undefined? pos.left : this.x;
480             this.y = this.y === undefined? pos.top : this.y;
481         }
482         this.el.setLeftTop(this.x, this.y);
483
484         if(this.expandOnShow){
485             this.expand(false);
486         }
487
488         if(this.modal){
489             Ext.getBody().addClass('x-body-masked');
490             this.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));
491             this.mask.show();
492         }
493     },
494
495     <div id="method-Ext.Window-show"></div>/**
496      * Shows the window, rendering it first if necessary, or activates it and brings it to front if hidden.
497      * @param {String/Element} animateTarget (optional) The target element or id from which the window should
498      * animate while opening (defaults to null with no animation)
499      * @param {Function} callback (optional) A callback function to call after the window is displayed
500      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Window.
501      * @return {Ext.Window} this
502      */
503     show : function(animateTarget, cb, scope){
504         if(!this.rendered){
505             this.render(Ext.getBody());
506         }
507         if(this.hidden === false){
508             this.toFront();
509             return this;
510         }
511         if(this.fireEvent('beforeshow', this) === false){
512             return this;
513         }
514         if(cb){
515             this.on('show', cb, scope, {single:true});
516         }
517         this.hidden = false;
518         if(Ext.isDefined(animateTarget)){
519             this.setAnimateTarget(animateTarget);
520         }
521         this.beforeShow();
522         if(this.animateTarget){
523             this.animShow();
524         }else{
525             this.afterShow();
526         }
527         return this;
528     },
529
530     // private
531     afterShow : function(isAnim){
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       this.doAnchor();
894       return this;
895     },
896
897     <div id="method-Ext.Window-toFront"></div>/**
898      * Brings this window to the front of any other visible windows
899      * @param {Boolean} e (optional) Specify <tt>false</tt> to prevent the window from being focused.
900      * @return {Ext.Window} this
901      */
902     toFront : function(e){
903         if(this.manager.bringToFront(this)){
904             if(!e || !e.getTarget().focus){
905                 this.focus();
906             }
907         }
908         return this;
909     },
910
911     <div id="method-Ext.Window-setActive"></div>/**
912      * Makes this the active window by showing its shadow, or deactivates it by hiding its shadow.  This method also
913      * fires the {@link #activate} or {@link #deactivate} event depending on which action occurred. This method is
914      * called internally by {@link Ext.WindowMgr}.
915      * @param {Boolean} active True to activate the window, false to deactivate it (defaults to false)
916      */
917     setActive : function(active){
918         if(active){
919             if(!this.maximized){
920                 this.el.enableShadow(true);
921             }
922             this.fireEvent('activate', this);
923         }else{
924             this.el.disableShadow();
925             this.fireEvent('deactivate', this);
926         }
927     },
928
929     <div id="method-Ext.Window-toBack"></div>/**
930      * Sends this window to the back of (lower z-index than) any other visible windows
931      * @return {Ext.Window} this
932      */
933     toBack : function(){
934         this.manager.sendToBack(this);
935         return this;
936     },
937
938     <div id="method-Ext.Window-center"></div>/**
939      * Centers this window in the viewport
940      * @return {Ext.Window} this
941      */
942     center : function(){
943         var xy = this.el.getAlignToXY(this.container, 'c-c');
944         this.setPagePosition(xy[0], xy[1]);
945         return this;
946     }
947
948     <div id="cfg-Ext.Window-autoWidth"></div>/**
949      * @cfg {Boolean} autoWidth @hide
950      **/
951 });
952 Ext.reg('window', Ext.Window);
953
954 // private - custom Window DD implementation
955 Ext.Window.DD = function(win){
956     this.win = win;
957     Ext.Window.DD.superclass.constructor.call(this, win.el.id, 'WindowDD-'+win.id);
958     this.setHandleElId(win.header.id);
959     this.scroll = false;
960 };
961
962 Ext.extend(Ext.Window.DD, Ext.dd.DD, {
963     moveOnly:true,
964     headerOffsets:[100, 25],
965     startDrag : function(){
966         var w = this.win;
967         this.proxy = w.ghost();
968         if(w.constrain !== false){
969             var so = w.el.shadowOffset;
970             this.constrainTo(w.container, {right: so, left: so, bottom: so});
971         }else if(w.constrainHeader !== false){
972             var s = this.proxy.getSize();
973             this.constrainTo(w.container, {right: -(s.width-this.headerOffsets[0]), bottom: -(s.height-this.headerOffsets[1])});
974         }
975     },
976     b4Drag : Ext.emptyFn,
977
978     onDrag : function(e){
979         this.alignElWithMouse(this.proxy, e.getPageX(), e.getPageY());
980     },
981
982     endDrag : function(e){
983         this.win.unghost();
984         this.win.saveState();
985     }
986 });
987 </pre>    \r
988 </body>\r
989 </html>