mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +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
50 lines
1.1 KiB
QML
50 lines
1.1 KiB
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int menuBurgerSize: 16
|
|
property int newConferenceSize: 40
|
|
property int minimumHeight: 610
|
|
property int minimumWidth: 950
|
|
property int width: 950
|
|
property int panelButtonSize : 20
|
|
property int homeButtonSize: 40
|
|
|
|
property QtObject accountStatus: QtObject {
|
|
property int width: 200
|
|
}
|
|
|
|
property QtObject autoAnswerStatus: QtObject {
|
|
property int iconSize: 16
|
|
property int width: 28
|
|
|
|
property QtObject text: QtObject {
|
|
property int pointSize: Units.dp * 8
|
|
property color color: Colors.i.color
|
|
}
|
|
}
|
|
|
|
property QtObject menu: QtObject {
|
|
property int height: 50
|
|
property int width: 250
|
|
}
|
|
|
|
property QtObject searchBox: QtObject {
|
|
property int maxHeight: 300 // See Hick's law for good choice.
|
|
}
|
|
|
|
property QtObject toolBar: QtObject {
|
|
property int height: 70
|
|
property int leftMargin: 18
|
|
property int rightMargin: 18
|
|
property int spacing: 16
|
|
|
|
property var background: Rectangle {
|
|
color: Colors.f.color
|
|
}
|
|
}
|
|
}
|