blob: 65c8a0eb4de9fce2f63330179be6e7f42e54b2e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//===========================================
// Lumina-desktop source code
// Copyright (c) 2017, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
import QtQuick 2.2
import QtQuick.Window 2.2
import QtQuick.Controls 1
import QtQuick.Layouts 1.3
import Lumina.Backend.PanelObject 2.0
Rectangle {
//C++ backend object
property string panel_id
property PanelObject object
id: panel
//Normal geometries/placements
color: object.background
x: object.x
y: object.y
width: object.width
height: object.height
GridLayout{
id: layout
anchors.fill: parent
//columns: parent.object.isVertical ? 1 : -1
//rows: parent.object.isVertical ? -1 : 1
flow: parent.isVertical ? GridLayout.TopToBottom : GridLayout.LeftToRight
//horizontalItemAlignment: parent.object.isVertical ? Grid.AlignHCenter : Qt.AlignLeft
//verticalItemAlignment: parent.object.isVertical ? Grid.AlignTop : Qt.AlignVCenter
Repeater {
model: panel.object.plugins
Loader{
asynchronous: true
property bool vertical : layout.parent.object.isVertical
property bool isspacer : modelData.endsWith("/Spacer.qml");
source: modelData
Layout.fillWidth : (vertical || isspacer) ? true : false
Layout.fillHeight : (vertical && ! isspacer) ? false : true
Layout.alignment : Qt.AlignVCenter | Qt.AlignHCenter
}
}
} //end of grid layout
}
|