mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 09:19:19 +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
45 lines
1 KiB
QML
45 lines
1 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int leftMargin: 10
|
|
|
|
property QtObject attribute: QtObject {
|
|
property int height: 40
|
|
|
|
property QtObject background: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.a.color
|
|
property color hovered: Colors.o.color
|
|
}
|
|
}
|
|
|
|
property QtObject dropArea: QtObject {
|
|
property int margins: 5
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property color color: Colors.j.color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|
|
|
|
property QtObject column: QtObject {
|
|
property int bitrateWidth: 120
|
|
property int clockRateWidth: 100
|
|
property int encoderDescriptionWidth: 280
|
|
property int mimeWidth: 100
|
|
property int recvFmtpWidth: 200
|
|
property int spacing: 10
|
|
}
|
|
|
|
property QtObject legend: QtObject {
|
|
property color color: Colors.j.color
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 50
|
|
}
|
|
}
|