mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 04:58:09 +00:00
26 lines
560 B
QML
26 lines
560 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int horizontalSpacing: 6
|
|
|
|
property QtObject presenceLevel: QtObject {
|
|
property int bottomMargin: 2
|
|
property int size: 16
|
|
}
|
|
|
|
property QtObject sipAddress: QtObject {
|
|
property color color: Colors.g
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property color color: Colors.j
|
|
property int pointSize: Units.dp * 11
|
|
}
|
|
}
|