1 /****************************************************************************
3 ** This file is part of QtCompositor**
5 ** Copyright © 2010 Nokia Corporation and/or its subsidiary(-ies).
6 ** All rights reserved.
8 ** Contact: Nokia Corporation qt-info@nokia.com
10 ** You may use this file under the terms of the BSD license as follows:
12 ** Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
16 ** Redistributions of source code must retain the above copyright
17 ** notice, this list of conditions and the following disclaimer.
19 ** Redistributions in binary form must reproduce the above copyright
20 ** notice, this list of conditions and the following disclaimer in the
21 ** documentation and/or other materials provided with the distribution.
23 ** Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the
24 ** names of its contributors may be used to endorse or promote products
25 ** derived from this software without specific prior written permission.
27 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 ****************************************************************************/
42 import "compositor.js" as CompositorLogic
54 source: "background.jpg"
58 function windowAdded(window) {
59 var windowComponent = Qt.createComponent("Window.qml");
60 var windowContainer = windowComponent.createObject(root);
62 window.parent = windowContainer;
63 windowContainer.width = window.width;
64 windowContainer.height = window.height;
65 windowContainer.child = window;
67 if (CompositorLogic.windowList == null)
68 CompositorLogic.windowList = new Array(0);
70 CompositorLogic.windowList.push(windowContainer);
71 CompositorLogic.relayout();
73 windowContainer.opacity = 1
74 windowContainer.animationsEnabled = true;
77 function windowDestroyed(window) {
79 for (i = 0; i < CompositorLogic.windowList.length; ++i) {
80 if (CompositorLogic.windowList[i].child == window)
84 var container = CompositorLogic.windowList[i];
86 CompositorLogic.windowList.splice(i, 1);
87 CompositorLogic.relayout();