171 lines
5.3 KiB
QML
171 lines
5.3 KiB
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Controls.Material 2.1
|
|
import QtQuick.Layouts 1.1
|
|
import Nymea 1.0
|
|
import "../components"
|
|
|
|
Page {
|
|
id: root
|
|
header: NymeaHeader {
|
|
text: qsTr("Look and feel")
|
|
backButtonVisible: true
|
|
onBackPressed: pageStack.pop()
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: contentColumn
|
|
width: parent.width
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true; Layout.leftMargin: app.margins; Layout.rightMargin: app.margins; Layout.topMargin: app.margins
|
|
visible: !kioskMode
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: qsTr("View mode")
|
|
}
|
|
ComboBox {
|
|
model: [qsTr("Windowed"), qsTr("Maximized"), qsTr("Fullscreen")]
|
|
currentIndex: {
|
|
switch (settings.viewMode) {
|
|
case ApplicationWindow.Windowed:
|
|
return 0;
|
|
case ApplicationWindow.Maximized:
|
|
return 1;
|
|
case ApplicationWindow.FullScreen:
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
onCurrentIndexChanged: {
|
|
switch (currentIndex) {
|
|
case 0:
|
|
settings.viewMode = ApplicationWindow.Windowed;
|
|
break;
|
|
case 1:
|
|
settings.viewMode = ApplicationWindow.Maximized;
|
|
break;
|
|
case 2:
|
|
settings.viewMode = ApplicationWindow.FullScreen;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true; Layout.leftMargin: app.margins; Layout.rightMargin: app.margins
|
|
visible: appBranding.length === 0
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: "Style"
|
|
}
|
|
ComboBox {
|
|
model: styleController.allStyles
|
|
currentIndex: styleController.allStyles.indexOf(styleController.currentStyle)
|
|
|
|
onActivated: {
|
|
styleController.currentStyle = model[index]
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: styleController
|
|
onCurrentStyleChanged: {
|
|
var popup = styleChangedDialog.createObject(root)
|
|
popup.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
CheckDelegate {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Return to home on idle")
|
|
checked: settings.returnToHome
|
|
onClicked: settings.returnToHome = checked
|
|
}
|
|
CheckDelegate {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Show connection tabs")
|
|
checked: settings.showConnectionTabs
|
|
onClicked: settings.showConnectionTabs = checked
|
|
}
|
|
|
|
CheckDelegate {
|
|
id: screenOffCheck
|
|
Layout.fillWidth: true
|
|
text: qsTr("Turn screen off when idle")
|
|
visible: PlatformHelper.canControlScreen
|
|
checked: PlatformHelper.screenTimeout > 0
|
|
onClicked: PlatformHelper.screenTimeout = (checked ? 15000 : 0)
|
|
}
|
|
|
|
ItemDelegate {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: screenOffCheck.height
|
|
visible: PlatformHelper.screenTimeout > 0
|
|
topPadding: 0
|
|
contentItem: RowLayout {
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Screen off timeout")
|
|
}
|
|
SpinBox {
|
|
value: PlatformHelper.screenTimeout / 1000
|
|
onValueModified: {
|
|
PlatformHelper.screenTimeout = value * 1000
|
|
}
|
|
}
|
|
Label {
|
|
text: qsTr("seconds")
|
|
}
|
|
}
|
|
}
|
|
|
|
ItemDelegate {
|
|
Layout.fillWidth: true
|
|
visible: PlatformHelper.canControlScreen
|
|
topPadding: 0
|
|
contentItem: RowLayout {
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: qsTr("Screen brightness")
|
|
}
|
|
Slider {
|
|
Layout.fillWidth: true
|
|
value: PlatformHelper.screenBrightness
|
|
onMoved: PlatformHelper.screenBrightness = value
|
|
from: 0
|
|
to: 100
|
|
stepSize: 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: styleChangedDialog
|
|
Dialog {
|
|
width: Math.min(parent.width * .8, contentLabel.implicitWidth)
|
|
x: (parent.width - width) / 2
|
|
y: (parent.height - height) / 2
|
|
modal: true
|
|
|
|
title: qsTr("Style changed")
|
|
|
|
standardButtons: Dialog.Ok
|
|
|
|
ColumnLayout {
|
|
id: content
|
|
anchors { left: parent.left; top: parent.top; right: parent.right }
|
|
|
|
Label {
|
|
id: contentLabel
|
|
Layout.fillWidth: true
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
text: qsTr("The application needs to be restarted for style changes to take effect.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|