mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-20 01:18:29 +00:00
42 lines
1.1 KiB
QML
42 lines
1.1 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property QtObject normal : QtObject {
|
|
property color color: ColorsList.add("Menu_normal", "q").color
|
|
property int width: 130
|
|
property bool shadowEnabled: true
|
|
property int radius : 0
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: "black"
|
|
property int width: 0
|
|
}
|
|
}
|
|
property QtObject aux : QtObject {
|
|
property color color: ColorsList.add("Menu_aux", "q").color
|
|
property int width: 200
|
|
property bool shadowEnabled: false
|
|
property int radius : 5
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: ColorsList.add("Menu_aux_border", "u").color
|
|
property int width: 1
|
|
}
|
|
}
|
|
property QtObject aux2 : QtObject {
|
|
property color color: ColorsList.add("Menu_aux2", "q").color
|
|
property int width: 250
|
|
property bool shadowEnabled: false
|
|
property int radius : 0
|
|
|
|
property QtObject border : QtObject {
|
|
property color color: "black"
|
|
property int width: 0
|
|
}
|
|
}
|
|
}
|