mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-21 22:48:31 +00:00
19 lines
385 B
QML
19 lines
385 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Linphone 1.0
|
|
|
|
QtObject {
|
|
property string color: Constants.colors.c
|
|
property string pressedColor: Constants.colors.b
|
|
|
|
property Rectangle background: Rectangle {
|
|
color: Constants.colors.a
|
|
}
|
|
|
|
property Rectangle contentItem: Rectangle {
|
|
implicitHeight: 100
|
|
implicitWidth: 8
|
|
radius: 10
|
|
}
|
|
}
|