mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
36 lines
851 B
QML
36 lines
851 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property color backgroundColor: Colors.f
|
|
property int actionAreaHeight: 100
|
|
property int contactDescriptionHeight: 60
|
|
property int containerMargins: 20
|
|
property int iconSize: 40
|
|
property int leftButtonsGroupMargin: 50
|
|
property int rightButtonsGroupMargin: 50
|
|
|
|
property QtObject avatar: QtObject {
|
|
property color backgroundColor: Colors.w
|
|
property int maxSize: 300
|
|
}
|
|
|
|
property QtObject callType: QtObject {
|
|
property color color: Colors.x
|
|
property int fontSize: 17
|
|
}
|
|
|
|
property QtObject header: QtObject {
|
|
property int spacing: 10
|
|
property int topMargin: 26
|
|
}
|
|
|
|
property QtObject userVideo: QtObject {
|
|
property int width: 130
|
|
property int height: 90
|
|
}
|
|
}
|