| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- // Copyright (C) 2016 The Qt Company Ltd.
- // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
- import QtQuick 2.0
- import HelperWidgets 2.0
- import QtQuick.Layouts 1.0
- Column {
- anchors.left: parent.left
- anchors.right: parent.right
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Title")
- SectionLayout {
- rows: 1
- Label {
- text: qsTr("title")
- }
- SecondColumnLayout {
- LineEdit {
- backendValue: backendValues.title
- Layout.fillWidth: true
- }
- ExpandingSpacer {
- }
- }
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Title Color")
- ColorEditor {
- caption: qsTr("titleColor")
- backendValue: backendValues.titleColor
- supportGradient: false
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Background Color")
- ColorEditor {
- caption: qsTr("backgroundColor")
- backendValue: backendValues.backgroundColor
- supportGradient: false
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Background")
- SectionLayout {
- rows: 2
- Label {
- text: qsTr("backgroundRoundness")
- tooltip: qsTr("Diameter of the rounding circle at the corners")
- Layout.fillWidth: true
- }
- SecondColumnLayout {
- SpinBox {
- backendValue: backendValues.backgroundRoundness
- minimumValue: 0.1
- maximumValue: 100.0
- stepSize: 0.1
- decimals: 1
- Layout.fillWidth: true
- }
- }
- Label {
- text: qsTr("dropShadowEnabled")
- tooltip: qsTr("Enable border drop shadow")
- Layout.fillWidth: true
- }
- SecondColumnLayout {
- CheckBox {
- backendValue: backendValues.dropShadowEnabled
- Layout.fillWidth: true
- }
- }
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Fill Color")
- ColorEditor {
- caption: qsTr("fillColor")
- backendValue: backendValues.fillColor
- supportGradient: false
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Plot Area Color")
- ColorEditor {
- caption: qsTr("plotAreaColor")
- backendValue: backendValues.plotAreaColor
- supportGradient: false
- }
- }
- Section {
- anchors.left: parent.left
- anchors.right: parent.right
- caption: qsTr("Localization")
- SectionLayout {
- rows: 1
- Label {
- text: qsTr("localizeNumbers")
- tooltip: qsTr("Localize numbers")
- Layout.fillWidth: true
- }
- SecondColumnLayout {
- CheckBox {
- backendValue: backendValues.localizeNumbers
- Layout.fillWidth: true
- }
- }
- }
- }
- }
|