mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-01 19:59:24 +00:00
21 lines
414 B
QML
21 lines
414 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.x
|
|
property int size: 10
|
|
}
|
|
}
|