mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-21 13:58:29 +00:00
- remove `SelectContact` component - remove `NewCall` view - fix styles & coding style if views
36 lines
861 B
QML
36 lines
861 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
|
|
}
|
|
}
|