Files
qt-creator/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml
Tim Jenßen feabda3aa7 Merge remote-tracking branch 'origin/10.0' into qds/dev
bigger conflicts resolved at:
  src/plugins/qmldesigner/CMakeLists.txt
  src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp

Change-Id: I08e2a109d8e37cbd77225129854e9e633725bfc7
2023-03-26 16:26:18 +02:00

79 lines
2.5 KiB
QML

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
import QtQuick 2.15
import QtQuick.Layouts 1.15
import HelperWidgets 2.0
import StudioTheme 1.0 as StudioTheme
Column {
anchors.left: parent.left
anchors.right: parent.right
Section {
anchors.left: parent.left
anchors.right: parent.right
caption: qsTr("Rectangle")
SectionLayout {
PropertyLabel {
text: qsTr("Fill color")
tooltip: qsTr("Sets the color for the background.")
}
ColorEditor {
backendValue: backendValues.color
supportGradient: backendValues.gradient.isAvailable
}
PropertyLabel {
text: qsTr("Border color")
tooltip: qsTr("Sets the color for the border.")
visible: backendValues.border_color.isAvailable
}
ColorEditor {
visible: backendValues.border_color.isAvailable
backendValue: backendValues.border_color
supportGradient: false
}
PropertyLabel {
text: qsTr("Border width")
tooltip: qsTr("Sets the border width.")
blockedByTemplate: !backendValues.border_width.isAvailable
}
SecondColumnLayout {
SpinBox {
implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ StudioTheme.Values.actionIndicatorWidth
width: implicitWidth
backendValue: backendValues.border_width
enabled: backendValue.isAvailable
}
ExpandingSpacer {}
}
PropertyLabel {
text: qsTr("Radius")
tooltip: qsTr("Sets the radius by which the corners get rounded.")
}
SecondColumnLayout {
SpinBox {
implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ StudioTheme.Values.actionIndicatorWidth
width: implicitWidth
backendValue: backendValues.radius
minimumValue: 0
maximumValue: Math.min(backendValues.height.value, backendValues.width.value) / 2
}
ExpandingSpacer {}
}
}
}
}