mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
49 lines
No EOL
1.2 KiB
QML
49 lines
No EOL
1.2 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import QtQuick 2.7
|
|
|
|
import Units 1.0
|
|
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int height: 353
|
|
property int width: 450
|
|
|
|
property QtObject mainLayout: QtObject {
|
|
property int topMargin: 15
|
|
property int leftMargin: 10
|
|
property int rightMargin: 10
|
|
property int spacing: 0
|
|
}
|
|
|
|
property QtObject okButton : QtObject{
|
|
property QtObject backgroundColor: QtObject {
|
|
property color disabled: Colors.i30.color
|
|
property color hovered: Colors.b.color
|
|
property color normal: Colors.s.color
|
|
property color pressed: Colors.m.color
|
|
}
|
|
|
|
property QtObject textColor: QtObject {
|
|
property color disabled: Colors.q.color
|
|
property color hovered: Colors.q.color
|
|
property color normal: Colors.q.color
|
|
property color pressed: Colors.q.color
|
|
}
|
|
}
|
|
|
|
property QtObject securityIcon: QtObject{
|
|
property int iconSize: 40
|
|
property int preferredHeight: 50
|
|
property int preferredWidth: 50
|
|
}
|
|
|
|
property QtObject descriptionText: QtObject{
|
|
property int leftMargin: 10
|
|
property int rightMargin: 10
|
|
property real pointSize: Units.dp * 11
|
|
property color color: Colors.d.color
|
|
}
|
|
} |