mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 13:18:06 +00:00
- 'show_home_invite_button' : to hide invite button in Home. - 'default_other_sip_account_domain' : to prefill the domain in other sip account page. Replace ListModel by JS array because ListModel doesn't support properties. Fix overlapping with Search bar and keypad.
35 lines
829 B
QML
35 lines
829 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'CardBlock'
|
|
property int spacing: 30
|
|
property int width: 200
|
|
|
|
property QtObject content: QtObject {
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject description: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_description', 'n')
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject icon: QtObject {
|
|
property int bottomMargin: 20
|
|
property int size: 140
|
|
}
|
|
|
|
property QtObject title: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_title', 'j')
|
|
property int bottomMargin: 10
|
|
property int pointSize: Units.dp * 10
|
|
property int height: 20
|
|
}
|
|
}
|