2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
2023-01-04 08:52:22 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-09-16 16:55:07 +02:00
|
|
|
|
2021-06-21 16:48:19 +02:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
2013-09-16 16:55:07 +02:00
|
|
|
import HelperWidgets 2.0
|
|
|
|
|
|
|
|
|
|
Column {
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
|
2021-06-21 16:48:19 +02:00
|
|
|
CharacterSection {
|
|
|
|
|
richTextEditorAvailable: true
|
|
|
|
|
showLineHeight: true
|
2013-10-23 13:37:44 +02:00
|
|
|
showVerticalAlignment: true
|
2021-06-21 16:48:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextExtrasSection {
|
2016-10-12 09:54:07 +02:00
|
|
|
showElide: true
|
2021-06-21 16:48:19 +02:00
|
|
|
showWrapMode: true
|
|
|
|
|
showFormatProperty: true
|
2016-10-12 11:41:28 +02:00
|
|
|
showFontSizeMode: true
|
2019-11-12 18:04:40 +01:00
|
|
|
showLineHeight: true
|
2013-10-23 13:37:44 +02:00
|
|
|
}
|
|
|
|
|
|
2021-06-21 16:48:19 +02:00
|
|
|
FontExtrasSection {
|
|
|
|
|
showStyle: true
|
2013-09-16 16:55:07 +02:00
|
|
|
}
|
|
|
|
|
|
2021-06-24 18:01:03 +02:00
|
|
|
PaddingSection {}
|
2013-09-16 16:55:07 +02:00
|
|
|
}
|