aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/newprojectdialog/imports/NewProjectDialog/Styles.qml
blob: 1464449ee759bb9c55e79a06b9a1712e0962eb98 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/

import QtQuick.Window
import QtQuick.Controls

import QtQuick
import QtQuick.Layouts

import StudioControls as SC

Item {
    width: DialogValues.stylesPaneWidth

    Component.onCompleted: {
        dialogBox.stylesLoaded = true;

        /*
         * TODO: roleNames is called before the backend model (in the proxy class StyleModel) is
         * loaded, which may be buggy. But I found no way to force refresh the model, so as to
         * reload the role names afterwards. setting styleModel.dynamicRoles doesn't appear to do
         * anything.
        */
    }

    Component.onDestruction: {
        dialogBox.stylesLoaded = false;
    }

    Rectangle {
        color: DialogValues.lightPaneColor
        anchors.fill: parent
        radius: 6

        Item {
            x: DialogValues.stylesPanePadding                               // left padding
            width: parent.width - DialogValues.stylesPanePadding * 2        // right padding
            height: parent.height

            ColumnLayout {
                anchors.fill: parent
                spacing: 5

                Text {
                    id: styleTitleText
                    text: qsTr("Style")
                    Layout.minimumHeight: DialogValues.paneTitleTextHeight
                    font.weight: Font.DemiBold
                    font.pixelSize: DialogValues.paneTitlePixelSize
                    lineHeight: DialogValues.paneTitleLineHeight
                    lineHeightMode: Text.FixedHeight
                    color: DialogValues.textColor
                    verticalAlignment: Qt.AlignVCenter

                    function refresh() {
                        text = qsTr("Style") + " (" + styleModel.rowCount() + ")"
                    }
                }

                SC.ComboBox {   // Style Filter ComboBox
                    actionIndicatorVisible: false
                    currentIndex: 0
                    textRole: "text"
                    valueRole: "value"
                    font.pixelSize: DialogValues.defaultPixelSize

                    model: ListModel {
                        ListElement { text: qsTr("All"); value: "all" }
                        ListElement { text: qsTr("Light"); value: "light" }
                        ListElement { text: qsTr("Dark"); value: "dark" }
                    }

                    implicitWidth: parent.width

                    onActivated: (index) => {
                        styleModel.filter(currentValue.toLowerCase());
                        styleTitleText.refresh();
                    }
                } // Style Filter ComboBox

                ListView {
                    id: stylesList
                    Layout.fillWidth: true
                    Layout.fillHeight: true
                    clip: true
                    model: styleModel

                    focus: true
                    boundsBehavior: Flickable.StopAtBounds

                    highlightFollowsCurrentItem: false

                    onCurrentIndexChanged: {
                        if (styleModel.rowCount() > 0)
                            dialogBox.styleIndex = stylesList.currentIndex;
                    }

                    delegate: ItemDelegate {
                        id: delegateId
                        height: styleImage.height + DialogValues.styleImageBorderWidth + styleText.height + extraPadding.height + 1
                        width: stylesList.width

                        Rectangle {
                            anchors.fill: parent
                            color: DialogValues.lightPaneColor

                            Column {
                                spacing: 0
                                anchors.fill: parent

                                Rectangle {
                                    border.color: index == stylesList.currentIndex ? DialogValues.textColorInteraction : "transparent"
                                    border.width: index == stylesList.currentIndex ? DialogValues.styleImageBorderWidth : 0
                                    color: "transparent"
                                    width: parent.width
                                    height: parent.height - styleText.height - extraPadding.height

                                    Image {
                                        id: styleImage
                                        asynchronous: false
                                        source: "image://newprojectdialog_library/" + styleModel.iconId(model.index)
                                        width: 200
                                        height: 262
                                        x: DialogValues.styleImageBorderWidth
                                        y: DialogValues.styleImageBorderWidth
                                    }
                                } // Rectangle

                                Text {
                                    id: styleText
                                    text: model.display
                                    font.pixelSize: DialogValues.defaultPixelSize
                                    lineHeight: DialogValues.defaultLineHeight
                                    height: 18
                                    lineHeightMode: Text.FixedHeight
                                    horizontalAlignment: Text.AlignHCenter
                                    width: parent.width
                                    color: DialogValues.textColor
                                }

                                Item { id: extraPadding; width: 1; height: 10 }
                            } // Column
                        } // Rectangle

                        MouseArea {
                            anchors.fill: parent
                            onClicked: {
                                stylesList.currentIndex = index
                            }
                        }
                    }

                    Connections {
                        target: styleModel
                        function onModelReset() {
                            stylesList.currentIndex = dialogBox.styleIndex;
                            stylesList.currentIndexChanged();
                            styleTitleText.refresh();
                        }
                    }
                } // ListView
            } // ColumnLayout
        } // Parent Item
    } // Rectangle
}