opaque/ScalingLabel.qml

21 lines
529 B
QML
Raw Normal View History

2020-05-19 19:49:52 +00:00
import QtGraphicalEffects 1.0
import QtQuick 2.7
import QtQuick.Controls 2.4
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
import QtQuick.Window 2.11
2020-05-20 02:26:58 +00:00
import "theme"
import "fonts"
2020-05-19 19:49:52 +00:00
Label {
font.pixelSize: gcd.themeScale * size
wrapMode: Text.WordWrap
2020-05-20 02:26:58 +00:00
color: Theme.mainTextColor
2020-05-19 19:49:52 +00:00
textFormat: Text.PlainText
property real size: 12
property bool bold: false
font.family: bold ? Fonts.applicationFontRegular.name : Fonts.applicationFontBold.name
font.styleName: bold ? "Bold" : ""
2020-05-19 19:49:52 +00:00
}