aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/designer/GroupBoxSpecifics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/designer/GroupBoxSpecifics.qml')
-rw-r--r--src/quickcontrols/designer/GroupBoxSpecifics.qml44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/quickcontrols/designer/GroupBoxSpecifics.qml b/src/quickcontrols/designer/GroupBoxSpecifics.qml
new file mode 100644
index 0000000000..29f826efff
--- /dev/null
+++ b/src/quickcontrols/designer/GroupBoxSpecifics.qml
@@ -0,0 +1,44 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import HelperWidgets
+import QtQuick.Layouts
+
+Column {
+ width: parent.width
+
+ Section {
+ width: parent.width
+ caption: qsTr("GroupBox")
+
+ SectionLayout {
+ Label {
+ text: qsTr("Title")
+ tooltip: qsTr("The title of the group box.")
+ }
+ SecondColumnLayout {
+ LineEdit {
+ backendValue: backendValues.title
+ Layout.fillWidth: true
+ }
+ }
+ }
+ }
+
+ PaneSection {
+ width: parent.width
+ }
+
+ ControlSection {
+ width: parent.width
+ }
+
+ FontSection {
+ width: parent.width
+ }
+
+ PaddingSection {
+ width: parent.width
+ }
+}