linphone-desktop/tests/ui/modules/Linphone/Styles/DialogStyle.qml
2016-09-27 12:05:02 +02:00

26 lines
588 B
QML

pragma Singleton
import QtQuick 2.7
import Linphone 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 int fontSize: 12
property int verticalMargin: 25
property string color: Constants.colors.l
}
}