17 lines
280 B
QML
17 lines
280 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Rectangle {
|
||
|
property string helptext
|
||
|
property string hovertext
|
||
|
width: content.width
|
||
|
height: content.height
|
||
|
|
||
|
color: "#99000000"
|
||
|
|
||
|
Text {
|
||
|
id: content
|
||
|
color: "white"
|
||
|
text: parent.helptext || parent.hovertext
|
||
|
}
|
||
|
}
|