mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 12:28:08 +00:00
20 lines
390 B
QML
20 lines
390 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color color: Colors.k
|
|
property int width: 400
|
|
|
|
property QtObject message: QtObject {
|
|
property int height: 140
|
|
}
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int bottomMargin: 35
|
|
property int spacing: 10
|
|
}
|
|
}
|