16 lines
280 B
QML
16 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
|
|
}
|
|
}
|