mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 14:48:15 +00:00
29 lines
600 B
QML
29 lines
600 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property int leftMargin: 50
|
|
property int rightMargin: 50
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int bottomMargin: 15
|
|
property int spacing: 20
|
|
property int topMargin: 15
|
|
}
|
|
|
|
property QtObject confirmDialog: QtObject {
|
|
property int height: 150
|
|
property int width: 370
|
|
}
|
|
|
|
property QtObject description: QtObject {
|
|
property color color: Colors.l
|
|
|
|
property int fontSize: 12
|
|
property int verticalMargin: 25
|
|
}
|
|
}
|