2023-08-31 16:24:18 +02:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import HelperWidgets as HelperWidgets
|
|
|
|
|
import StudioControls as StudioControls
|
|
|
|
|
import StudioTheme as StudioTheme
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
color: StudioTheme.Values.themeTextColor
|
|
|
|
|
font.pixelSize: StudioTheme.Values.myFontSize
|
|
|
|
|
property alias tooltip: area.tooltip
|
2023-09-15 17:33:00 +02:00
|
|
|
|
2023-09-08 15:49:58 +02:00
|
|
|
HelperWidgets.ToolTipArea {
|
2023-08-31 16:24:18 +02:00
|
|
|
id: area
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
tooltip: qsTr("missing")
|
|
|
|
|
}
|
|
|
|
|
}
|