mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-22 14:18:09 +00:00
37 lines
830 B
QML
37 lines
830 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int height: 40
|
|
property int width: 5
|
|
|
|
property QtObject high: QtObject {
|
|
property QtObject background: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color disabled: Colors.y
|
|
property color enabled: Colors.x
|
|
}
|
|
}
|
|
|
|
property QtObject contentItem: QtObject {
|
|
property color color: Colors.s
|
|
}
|
|
}
|
|
|
|
property QtObject low: QtObject {
|
|
property QtObject background: QtObject {
|
|
property QtObject color: QtObject {
|
|
property color disabled: Colors.y
|
|
property color enabled: Colors.x
|
|
}
|
|
}
|
|
|
|
property QtObject contentItem: QtObject {
|
|
property color color: Colors.j
|
|
}
|
|
}
|
|
}
|