mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 16:38:28 +00:00
54 lines
1.6 KiB
QML
54 lines
1.6 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject entry: QtObject {
|
|
property int height: 50
|
|
property int iconSize: 36
|
|
property int rightMargin: 10
|
|
|
|
property QtObject color: QtObject {
|
|
property color hovered: ColorsList.add("SipAddressesView_entry_hovered", "o").color
|
|
property color normal: ColorsList.add("SipAddressesView_entry_normal", "q").color
|
|
}
|
|
|
|
property QtObject indicator: QtObject {
|
|
property color color: ColorsList.add("SipAddressesView_entry_indicator", "i").color
|
|
property int width: 5
|
|
}
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: ColorsList.add("SipAddressesView_entry_separator", "c").color
|
|
property int height: 1
|
|
}
|
|
}
|
|
|
|
property QtObject header: QtObject {
|
|
property int iconSize: 22
|
|
property int leftMargin: 20
|
|
property int rightMargin: 10
|
|
|
|
property QtObject button: QtObject {
|
|
property int height: 40
|
|
}
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: ColorsList.add("SipAddressesView_header_normal", "j").color
|
|
property color pressed: ColorsList.add("SipAddressesView_header_pressed", "i").color
|
|
}
|
|
|
|
property QtObject text: QtObject {
|
|
property int pointSize: Units.dp * 9
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: ColorsList.add("SipAddressesView_header_text_normal", "q").color
|
|
property color pressed: ColorsList.add("SipAddressesView_header_text_pressed", "q").color
|
|
}
|
|
}
|
|
}
|
|
}
|