2014-08-27 15:23:59 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
2015-08-18 16:22:16 +00:00
|
|
|
BaseRectangle {
|
2014-08-27 15:23:59 +00:00
|
|
|
property string helptext
|
|
|
|
property string hovertext
|
|
|
|
width: content.width
|
|
|
|
height: content.height
|
|
|
|
|
|
|
|
color: "#99000000"
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: content
|
|
|
|
color: "white"
|
|
|
|
text: parent.helptext || parent.hovertext
|
|
|
|
}
|
|
|
|
}
|