Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/main.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.7
0008 
0009 Rectangle {
0010     id: root
0011 
0012     SystemPalette {
0013         id: myPalette
0014     }
0015 
0016     color: myPalette.window
0017 
0018     Loader {
0019         id: loader
0020 
0021         anchors.fill: parent
0022 
0023         // non-code areas are broken ATM, so just go blank for them
0024         // old: source: "qrc:///qml/area_"+area+".qml"
0025         source: area === "code" ? "qrc:///qml/area_code.qml" : ""
0026         asynchronous: true
0027         opacity: status === Loader.Ready
0028 
0029         Behavior on opacity {
0030             PropertyAnimation {}
0031         }
0032     }
0033 
0034 }