Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/ProjectsDashboard.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.0
0008 import QtQuick.Layouts 1.0
0009 import QtQuick.Controls 1.2
0010 
0011 import "plugins"
0012 
0013 StandardPage {
0014     ScrollView {
0015         anchors {
0016             fill: parent
0017             margins: 30
0018         }
0019         GridView {
0020             id: grid
0021             width: parent.width
0022             cellWidth: grid.width/2
0023             cellHeight: grid.height/3
0024 
0025             model: [ "qrc:/qml/plugins/Branches.qml", "qrc:/qml/plugins/Projects.qml" ]
0026 //          TODO: make this the plugin
0027             delegate: Loader {
0028                 x: 5
0029                 y: 5
0030                 width: grid.cellWidth-5
0031                 height: grid.cellHeight-5
0032                 source: modelData
0033             }
0034         }
0035     }
0036 }