mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 04:18:08 +00:00
18 lines
413 B
QML
18 lines
413 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.g
|
|
property color color: Colors.q
|
|
property int arrowSize: 8
|
|
property int delay: 1000
|
|
property int pointSize: Units.dp * 9
|
|
property int margins: 8
|
|
property int padding: 4
|
|
property int radius: 4
|
|
}
|