A control that displays text to a user withing an image. More...
The PanelReadOut type provides a visual text and image read out. The control is styled with an image and text.
import QtQuick 1.1 import "components" // Here is a simple animated switch using 2 images: PanelReadOut { id: panel_read_out1 width: 211 height: 99 text: "10000" font.pixelSize: 22 textColor: "#50dd0e" imagePanel: "images/bezel.bmp" font.bold: false font.family: "Arial" onTextChanged: { console.debug(text); } }