mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-02 20:29:23 +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
38 lines
982 B
QML
38 lines
982 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int columnSpacing: 0
|
|
property int height: 180
|
|
property int rowSpacing: 0
|
|
property int width: 180
|
|
property color color: Colors.k.color
|
|
property color selectedColor : Colors.m.color
|
|
property int selectedBorderWidth: 2
|
|
property real radius : 5.0
|
|
|
|
property QtObject button: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.q.color
|
|
property color pressed: Colors.i.color
|
|
}
|
|
|
|
property QtObject line: QtObject {
|
|
property color color: Colors.l50.color
|
|
property int bottomMargin: 4
|
|
property int height: 2
|
|
property int leftMargin: 8
|
|
property int rightMargin: 8
|
|
property int topMargin: 0
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property color color: Colors.d.color
|
|
property int pointSize: Units.dp * 11
|
|
}
|
|
}
|
|
}
|