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
64 lines
1.4 KiB
QML
64 lines
1.4 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject buttons: QtObject {
|
|
property int spacing: 20
|
|
property int topMargin: 20
|
|
}
|
|
|
|
property QtObject bar: QtObject {
|
|
property color color: Colors.e.color
|
|
property int avatarSize: 60
|
|
property int height: 80
|
|
property int leftMargin: 40
|
|
property int rightMargin: 30
|
|
property int spacing: 20
|
|
|
|
property QtObject actions: QtObject {
|
|
property int spacing: 40
|
|
|
|
property QtObject del: QtObject {
|
|
property int iconSize: 22
|
|
}
|
|
|
|
property QtObject edit: QtObject {
|
|
property int iconSize: 22
|
|
}
|
|
|
|
property QtObject history: QtObject {
|
|
property int iconSize: 40
|
|
}
|
|
}
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int size: 40
|
|
property int spacing: 20
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property color color: Colors.j.color
|
|
property int pointSize: Units.dp * 13
|
|
}
|
|
}
|
|
|
|
property QtObject content: QtObject {
|
|
property color color: Colors.k.color
|
|
}
|
|
|
|
property QtObject values: QtObject {
|
|
property int bottomMargin: 20
|
|
property int leftMargin: 40
|
|
property int rightMargin: 20
|
|
property int topMargin: 20
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: Colors.f.color
|
|
property int height: 1
|
|
}
|
|
}
|
|
}
|