mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
Remove Call and notices logs from db Delete empty chat rooms after requesting it Option of showing/hidding empty chat rooms Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc. Fix crashes Fix timeline times
48 lines
1.2 KiB
QML
48 lines
1.2 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color color: Colors.q.color
|
|
|
|
property QtObject contact: QtObject {
|
|
property int height: 60
|
|
|
|
property QtObject backgroundColor: QtObject {
|
|
property color a: Colors.g10.color
|
|
property color b: Colors.a.color
|
|
property color selected: Colors.i.color
|
|
}
|
|
|
|
property QtObject sipAddress: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.n.color
|
|
property color selected: Colors.q.color
|
|
}
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.j.color
|
|
property color selected: Colors.q.color
|
|
}
|
|
}
|
|
}
|
|
|
|
property QtObject legend: QtObject {
|
|
property QtObject backgroundColor: QtObject {
|
|
property color normal: Colors.f.color
|
|
property color hovered: Colors.c.color
|
|
}
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 30
|
|
property int iconSize: 14
|
|
property int leftMargin: 17
|
|
property int rightMargin: 17
|
|
property int spacing: 8
|
|
}
|
|
}
|