12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import QtQuick 2.0
- //import Qt.labs.controls 1.0
- import QtQuick.Controls 2.0
- import "qrc:/Globals"
- Item {
- id: buttITEM
- property color borderColor: Globals.customer_color_base
- property int borderWidth: 2
- property alias text: buttLABEL.text
- property alias color: buttLABEL.color
- property int buttX: 0
- property int buttY: 0
- property int buttWidth: 35
- property int buttHeight: 35
- property int borderRadius: 3
- signal buttPressed
- Rectangle {
- id: buttRECT
- x: buttX //parent.x
- y: buttY //parent.y
- width: buttWidth//buttITEM.width
- height: buttHeight
- border.color: borderColor
- border.width: borderWidth
- radius: borderRadius
- Label {
- id: buttLABEL
- anchors.centerIn: buttRECT
- font.family: "FontAwesome"
- font.bold: false
- font.pixelSize: buttHeight - borderWidth
- }
- MouseArea{
- anchors.fill:parent
- onClicked: {
- sysinfo.beep();
- buttPressed();
- }
- }
- }
- }
|