forked from qt-creator/qt-creator
GPL-3.0 is deprecated by SPDX.
Change done by
find . -type f -exec perl -pi -e 's/LicenseRef-Qt-Commercial OR GPL-3.0(?!-)/LicenseRef-Qt-Commercial OR GPL-3.0-only/g' {} \;
Change-Id: If316a498e3f27d2030b86d4e7743b3237ce09939
Reviewed-by: Lucie Gerard <lucie.gerard@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
155 lines
4.9 KiB
QML
155 lines
4.9 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 StudioControls 1.0 as StudioControls
|
|
import StudioTheme 1.0 as StudioTheme
|
|
|
|
Section {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
caption: qsTr("Layout")
|
|
spacing: StudioTheme.Values.sectionRowSpacing + 6
|
|
|
|
LayoutProperties {
|
|
id: layoutPoperties
|
|
visible: anchorBackend.isInLayout
|
|
}
|
|
|
|
SectionLayout {
|
|
visible: !anchorBackend.isInLayout
|
|
|
|
PropertyLabel { text: qsTr("Anchors") }
|
|
|
|
SecondColumnLayout {
|
|
Spacer {
|
|
implicitWidth: StudioTheme.Values.actionIndicatorWidth
|
|
}
|
|
|
|
AnchorButtons {}
|
|
|
|
ExpandingSpacer {}
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
visible: anchorBackend.topAnchored
|
|
iconSource: StudioTheme.Constants.anchorTop
|
|
anchorMargin: backendValues.anchors_topMargin
|
|
targetName: anchorBackend.topTarget
|
|
relativeTarget: anchorBackend.relativeAnchorTargetTop
|
|
verticalAnchor: true
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.topTarget = currentText
|
|
}
|
|
onSameEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetTop = AnchorBindingProxy.SameEdge
|
|
}
|
|
onOppositeEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetTop = AnchorBindingProxy.OppositeEdge
|
|
}
|
|
onCenterButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetTop = AnchorBindingProxy.Center
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
visible: anchorBackend.bottomAnchored
|
|
iconSource: StudioTheme.Constants.anchorBottom
|
|
anchorMargin: backendValues.anchors_bottomMargin
|
|
targetName: anchorBackend.bottomTarget
|
|
relativeTarget: anchorBackend.relativeAnchorTargetBottom
|
|
verticalAnchor: true
|
|
invertRelativeTargets: true
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.bottomTarget = currentText
|
|
}
|
|
onSameEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetBottom = AnchorBindingProxy.SameEdge
|
|
}
|
|
onOppositeEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetBottom = AnchorBindingProxy.OppositeEdge
|
|
}
|
|
onCenterButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetBottom = AnchorBindingProxy.Center
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
visible: anchorBackend.leftAnchored
|
|
iconSource: StudioTheme.Constants.anchorLeft
|
|
anchorMargin: backendValues.anchors_leftMargin
|
|
targetName: anchorBackend.leftTarget
|
|
relativeTarget: anchorBackend.relativeAnchorTargetLeft
|
|
verticalAnchor: false
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.leftTarget = currentText
|
|
}
|
|
onSameEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetLeft = AnchorBindingProxy.SameEdge
|
|
}
|
|
onOppositeEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetLeft = AnchorBindingProxy.OppositeEdge
|
|
}
|
|
onCenterButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetLeft = AnchorBindingProxy.Center
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
visible: anchorBackend.rightAnchored
|
|
iconSource: StudioTheme.Constants.anchorRight
|
|
anchorMargin: backendValues.anchors_rightMargin
|
|
targetName: anchorBackend.rightTarget
|
|
relativeTarget: anchorBackend.relativeAnchorTargetRight
|
|
verticalAnchor: false
|
|
invertRelativeTargets: true
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.rightTarget = currentText
|
|
}
|
|
onSameEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetRight = AnchorBindingProxy.SameEdge
|
|
}
|
|
onOppositeEdgeButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetRight = AnchorBindingProxy.OppositeEdge
|
|
}
|
|
onCenterButtonClicked: {
|
|
anchorBackend.relativeAnchorTargetRight = AnchorBindingProxy.Center
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
showAlternativeTargets: false
|
|
visible: anchorBackend.horizontalCentered
|
|
iconSource: StudioTheme.Constants.centerHorizontal
|
|
anchorMargin: backendValues.anchors_horizontalCenterOffset
|
|
targetName: anchorBackend.horizontalTarget
|
|
verticalAnchor: false
|
|
buttonRow.visible: false
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.horizontalTarget = currentText
|
|
}
|
|
}
|
|
|
|
AnchorRow {
|
|
showAlternativeTargets: false
|
|
visible: anchorBackend.verticalCentered
|
|
iconSource: StudioTheme.Constants.centerVertical
|
|
anchorMargin: backendValues.anchors_verticalCenterOffset
|
|
targetName: anchorBackend.verticalTarget
|
|
verticalAnchor: true
|
|
buttonRow.visible: false
|
|
|
|
onTargetChanged: {
|
|
anchorBackend.verticalTarget = currentText
|
|
}
|
|
}
|
|
}
|