mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 13:18:06 +00:00
27 lines
749 B
QML
27 lines
749 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'NotificationReceived'
|
|
property var colorModel: ColorsList.add(sectionName+'_file', 'k')
|
|
property int leftMargin: 25
|
|
property int overrodeHeight: 55
|
|
property int rightMargin: 15
|
|
property int spacing: 10
|
|
|
|
property QtObject fileName: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_file_name', 'h')
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
|
|
property QtObject fileSize: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_file_size', 'h')
|
|
property int pointSize: Units.dp * 9
|
|
property int width: 100
|
|
}
|
|
}
|