linphone-desktop/tests/ui/Linphone/Form/SmallButton.qml
2016-09-26 15:34:33 +02:00

30 lines
692 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
// ===================================================================
Button {
property alias backgroundColor: background.color
background: Rectangle {
color: button.down
? '#FE5E00'
: (button.hovered
? '#C0C0C0'
: '#D1D1D1'
)
id: background
implicitHeight: 22
radius: 10
}
contentItem: Text {
color:'#FFFFFF'
font.pointSize: 8
horizontalAlignment: Text.AlignHCenter
id: text
text: button.text
verticalAlignment: Text.AlignVCenter
}
hoverEnabled: true
id: button
}