mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-26 00:08:13 +00:00
24 lines
569 B
QML
24 lines
569 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
// ===================================================================
|
|
|
|
Button {
|
|
property alias backgroundColor: background.color
|
|
|
|
background: Rectangle {
|
|
color: button.down ? '#FE5E00' : '#8E8E8E'
|
|
id: background
|
|
implicitHeight: 22
|
|
radius: 10
|
|
}
|
|
contentItem: Text {
|
|
color:'#FFFFFF'
|
|
font.pointSize: 8
|
|
horizontalAlignment: Text.AlignHCenter
|
|
id: text
|
|
text: button.text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
id: button
|
|
}
|