mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
64 lines
1.4 KiB
QML
64 lines
1.4 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject background: QtObject {
|
|
property int height: 36
|
|
property int iconSize: 10
|
|
property int radius: 4
|
|
property int width: 200
|
|
|
|
property QtObject border: QtObject {
|
|
property color color: Colors.c
|
|
property int width: 1
|
|
}
|
|
|
|
property QtObject color: QtObject {
|
|
property color normal: Colors.k
|
|
property color readOnly: Colors.e
|
|
}
|
|
}
|
|
|
|
property QtObject contentItem: QtObject {
|
|
property int iconSize: 20
|
|
property int leftMargin: 10
|
|
property int spacing: 5
|
|
|
|
property QtObject text: QtObject {
|
|
property color color: Colors.d
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|
|
|
|
property QtObject delegate: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color hovered: Colors.y
|
|
property color normal: Colors.k
|
|
}
|
|
|
|
property QtObject contentItem: QtObject {
|
|
property int iconSize: 20
|
|
property int spacing: 5
|
|
|
|
property QtObject text: QtObject {
|
|
property color color: Colors.d
|
|
property int pointSize: Units.dp * 10
|
|
}
|
|
}
|
|
|
|
property QtObject indicator: QtObject {
|
|
property color color: Colors.i
|
|
property int width: 5
|
|
}
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: Colors.c
|
|
property int height: 1
|
|
}
|
|
}
|
|
}
|