linphone-desktop/tests/ui/style/components/DialogStyle.qml
2016-09-26 12:02:03 +02:00

24 lines
592 B
QML

pragma Singleton
import QtQuick 2.7
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 int fontSize: 12
property int height: 90 // Height with text.
property int minHeight: 25 // Height without text.
}
}