mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 07:38:11 +00:00
26 lines
675 B
QML
26 lines
675 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
// ===================================================================
|
|
|
|
Button {
|
|
property string backgroundColor: '#434343'
|
|
property string textColor: '#FFFFFF'
|
|
|
|
background: Rectangle {
|
|
color: button.down ? '#FE5E00' : backgroundColor
|
|
implicitHeight: 30
|
|
implicitWidth: 160
|
|
radius: 4
|
|
}
|
|
contentItem: Text {
|
|
color: button.down ? '#FFFFFF' : textColor
|
|
font.pointSize: 8
|
|
font.weight: Font.DemiBold
|
|
horizontalAlignment: Text.AlignHCenter
|
|
id: text
|
|
text: button.text
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
id: button
|
|
}
|