| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // Copyright (C) 2022 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
- // Qt-Security score:significant reason:default
- import QtQuick
- import QtQuick.Templates as T
- T.AbstractDayOfWeekRow {
- id: control
- implicitWidth: Math.max(background ? background.implicitWidth : 0,
- contentItem.implicitWidth + leftPadding + rightPadding)
- implicitHeight: Math.max(background ? background.implicitHeight : 0,
- contentItem.implicitHeight + topPadding + bottomPadding)
- spacing: 6
- topPadding: 6
- bottomPadding: 6
- font.bold: true
- //! [delegate]
- delegate: Text {
- text: shortName
- font: control.font
- color: control.palette.text
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- required property string shortName
- }
- //! [delegate]
- //! [contentItem]
- contentItem: Row {
- spacing: control.spacing
- Repeater {
- model: control.source
- delegate: control.delegate
- }
- }
- //! [contentItem]
- }
|