mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
23 lines
514 B
QML
23 lines
514 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.k
|
|
|
|
property QtObject animation: QtObject {
|
|
property int openingDuration: 250
|
|
property int closingDuration: 250
|
|
}
|
|
|
|
property QtObject shadow: QtObject {
|
|
property color color: Colors.l
|
|
property int horizontalOffset: 4
|
|
property int radius: 8
|
|
property int samples: 15
|
|
property int verticalOffset: 4
|
|
}
|
|
}
|