mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 04:58:09 +00:00
19 lines
508 B
QML
19 lines
508 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'RadioButton'
|
|
property var backgroundColor: ColorsList.add(sectionName+'_bg', 'k')
|
|
|
|
property int height: 60
|
|
property var colorModel: ColorsList.add(sectionName+'_fg', 'j')
|
|
property int weight: Font.Normal
|
|
property int selectedWeight: Font.Bold
|
|
property int pointSize: Units.dp * 12
|
|
}
|