forked from openkylin/ukui-menu
27 lines
592 B
QML
27 lines
592 B
QML
import QtQuick 2.0
|
|
import org.ukui.menu.core 1.0
|
|
|
|
Text {
|
|
property int paletteRole: Palette.Text
|
|
property real alpha: 1.0
|
|
|
|
function updateColor() {
|
|
color = themePalette.paletteColorWithCustomTransparency(paletteRole, Palette.Active, alpha)
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
updateColor()
|
|
themePalette.styleColorChanged.connect(updateColor)
|
|
}
|
|
Component.onDestruction: {
|
|
themePalette.styleColorChanged.disconnect(updateColor)
|
|
}
|
|
|
|
onPaletteRoleChanged: {
|
|
updateColor()
|
|
}
|
|
onAlphaChanged: {
|
|
updateColor()
|
|
}
|
|
}
|