mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 07:38:11 +00:00
21 lines
404 B
QML
21 lines
404 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property int nSpheres: 3
|
|
property int spacing: 6
|
|
|
|
property QtObject animation: QtObject {
|
|
property int duration: 200
|
|
property int space: 10
|
|
}
|
|
|
|
property QtObject sphere: QtObject {
|
|
property color color: Colors.r
|
|
property int size: 10
|
|
}
|
|
}
|