pragma Singleton import QtQml 2.2 import ColorsList 1.0 import Units 1.0 // ============================================================================= QtObject { property string sectionName : 'SipAddressDialog' property int height: 420 property int spacing: 10 property int width: 450 property QtObject select: QtObject { property int iconSize: 36 property string icon : 'transfer_custom' property string name : 'select' property var backgroundNormalColor : ColorsList.addImageColor(sectionName+'_'+name+'_bg_n', icon, 's_n_b_bg') property var backgroundHoveredColor : ColorsList.addImageColor(sectionName+'_'+name+'_bg_h', icon, 's_h_b_bg') property var backgroundPressedColor : ColorsList.addImageColor(sectionName+'_'+name+'_bg_p', icon, 's_p_b_bg') property var foregroundNormalColor : ColorsList.addImageColor(sectionName+'_'+name+'_fg_n', icon, 's_n_b_fg') property var foregroundHoveredColor : ColorsList.addImageColor(sectionName+'_'+name+'_fg_h', icon, 's_h_b_fg') property var foregroundPressedColor : ColorsList.addImageColor(sectionName+'_'+name+'_fg_p', icon, 's_p_b_fg') } property QtObject searchField: QtObject { property var colorModel: ColorsList.add(sectionName+'_searchField', 'c') } property QtObject list: QtObject { property var colorModel: ColorsList.add(sectionName+'_list_title', 'g') property int pointSize: Units.dp * 11 } }