mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-23 11:18:30 +00:00
64 lines
No EOL
1.7 KiB
QML
64 lines
No EOL
1.7 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
|
|
// =============================================================================
|
|
QtObject {
|
|
property int height: 500
|
|
property int width: 450
|
|
|
|
property QtObject mainLayout: QtObject {
|
|
property int topMargin: 15
|
|
property int leftMargin: 25
|
|
property int rightMargin: 25
|
|
property int spacing: 7
|
|
}
|
|
|
|
property QtObject searchBar : QtObject{
|
|
property int topMargin : 10
|
|
}
|
|
|
|
property QtObject results : QtObject{
|
|
property int topMargin : 10
|
|
property color color : Colors.g.color
|
|
property QtObject title : QtObject{
|
|
property int topMargin: 10
|
|
property int leftMargin: 20
|
|
property color color: Colors.j.color
|
|
property int pointSize : Units.dp * 11
|
|
property int weight : Font.DemiBold
|
|
}
|
|
property QtObject header: QtObject{
|
|
property int rightMargin: 55
|
|
property color color: Colors.t.color
|
|
property int weight : Font.Light
|
|
property int pointSize : Units.dp * 10
|
|
|
|
}
|
|
}
|
|
|
|
property QtObject leaveButton :
|
|
QtObject {
|
|
property QtObject backgroundColor: QtObject {
|
|
property color disabled: Colors.o.color
|
|
property color hovered: Colors.j.color
|
|
property color normal: Colors.k.color
|
|
property color pressed: Colors.i.color
|
|
}
|
|
|
|
property QtObject textColor: QtObject {
|
|
property color disabled: Colors.q.color
|
|
property color hovered: Colors.q.color
|
|
property color normal: Colors.i.color
|
|
property color pressed: Colors.q.color
|
|
}
|
|
property QtObject borderColor : QtObject{
|
|
property color disabled: Colors.q.color
|
|
property color hovered: Colors.q.color
|
|
property color normal: Colors.i.color
|
|
property color pressed: Colors.q.color
|
|
}
|
|
}
|
|
} |