mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 06:59:45 +00:00
30 lines
650 B
QML
30 lines
650 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject description: QtObject {
|
|
property color color: Colors.j
|
|
property int pointSize: Units.dp * 12
|
|
property int height: 60
|
|
property int width: 150
|
|
}
|
|
|
|
property QtObject grid: QtObject {
|
|
property int spacing: 5
|
|
|
|
property QtObject cell: QtObject {
|
|
property int height: 145
|
|
property int spacing: 5
|
|
property int width: 154
|
|
|
|
property QtObject contactDescription: QtObject {
|
|
property int height: 35
|
|
}
|
|
}
|
|
}
|
|
}
|