linphone-desktop/linphone-app/ui/modules/Linphone/Styles/Menus/SipAddressesMenuStyle.qml

32 lines
839 B
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
import ColorsList 1.0
// =============================================================================
QtObject {
property string sectionName: 'SipAddressesMenu'
property int spacing: 1
property int maxHeight: 164
property QtObject entry: QtObject {
property int leftMargin: 18
property int rightMargin: 8
property int height: 40
property int width: 300
property QtObject color: QtObject {
property var hovered: ColorsList.add(sectionName+'_entry_h', 'j')
property var normal: ColorsList.add(sectionName+'_entry_n', 'g')
property var pressed: ColorsList.add(sectionName+'_entry_p', 'i')
}
property QtObject text: QtObject {
property var colorModel: ColorsList.add(sectionName+'_entry_text', 'q')
property int pointSize: Units.dp * 10
}
}
}