mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:08:25 +00:00
34 lines
928 B
QML
34 lines
928 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'CallStats'
|
|
property color color: ColorsList.add(sectionName, 'e').color
|
|
property int height: 280
|
|
property int leftMargin: 12
|
|
property int rightMargin: 12
|
|
property int spacing: 8
|
|
property int topMargin: 10
|
|
|
|
property QtObject title: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_title', 'd').color
|
|
property int bottomMargin: 20
|
|
property int pointSize: Units.dp * 16
|
|
}
|
|
|
|
property QtObject key: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_key', 'd').color
|
|
property int pointSize: Units.dp * 10
|
|
property int width: 200
|
|
}
|
|
|
|
property QtObject value: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_value', 'd').color
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|