mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-05 05:49:40 +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
41 lines
971 B
QML
41 lines
971 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject normal : QtObject {
|
|
property color color: Colors.q.color
|
|
property int width: 130
|
|
property bool shadowEnabled: true
|
|
property int radius : 0
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: Colors.u.color
|
|
property int width: 0
|
|
}
|
|
}
|
|
property QtObject aux : QtObject {
|
|
property color color: Colors.q.color
|
|
property int width: 200
|
|
property bool shadowEnabled: false
|
|
property int radius : 5
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: Colors.u.color
|
|
property int width: 1
|
|
}
|
|
}
|
|
property QtObject aux2 : QtObject {
|
|
property color color: Colors.q.color
|
|
property int width: 250
|
|
property bool shadowEnabled: false
|
|
property int radius : 0
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: Colors.u.color
|
|
property int width: 0
|
|
}
|
|
}
|
|
}
|