mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +00:00
32 lines
839 B
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
|
|
}
|
|
}
|
|
}
|