aboutsummaryrefslogtreecommitdiff
path: root/components/AdvancedOptionsItem.qml
blob: 4fc8ea2622493d3e6d7905ca9565d261ff90d7bd (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import QtQuick 2.9
import QtQuick.Layouts 1.1

import "../components" as MonzeroComponents

RowLayout {
    id: advancedOptionsItem

    property alias title: title.text
    property alias tooltip: title.tooltip
    property alias button1: button1
    property alias button2: button2
    property alias button3: button3

    RowLayout {
        id: titlecolumn
        Layout.alignment: Qt.AlignTop | Qt.AlignLeft
        Layout.preferredWidth: 195
        Layout.maximumWidth: 195
        Layout.leftMargin: 10

        MonzeroComponents.Label {
            id: title
            fontSize: 14
            tooltipIconVisible: true
        }

        Rectangle {
            id: separator
            Layout.fillWidth: true
            height: 10
            color: "transparent"
        }
    }

    ColumnLayout {
        Layout.fillWidth: false
        Layout.alignment: Qt.AlignTop | Qt.AlignLeft
        spacing: 4

        RowLayout {
            Layout.fillWidth: false
            spacing: 12
            Layout.alignment: Qt.AlignTop | Qt.AlignLeft

            StandardButton {
                id: button1
                small: true
                primary: false
                visible: button1.text
            }

            StandardButton {
                id: button2
                small: true
                primary: false
                visible: button2.text
            }

            StandardButton {
                id: button3
                small: true
                primary: false
                visible: button3.text
            }
        }
    }
}