mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-02 04:09:28 +00:00
25 lines
557 B
QML
25 lines
557 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property int height: 640
|
|
property int width: 1024
|
|
|
|
property QtObject forms: QtObject {
|
|
property int spacing: 10
|
|
}
|
|
|
|
property QtObject validButton: QtObject {
|
|
property int bottomMargin: 30
|
|
property int rightMargin: 30
|
|
property int topMargin: 30
|
|
}
|
|
|
|
property QtObject sipAccounts: QtObject {
|
|
property int buttonsSpacing: 8
|
|
property int iconSize: 20
|
|
property int legendLineWidth: 280
|
|
}
|
|
}
|