mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
- remove `SelectContact` component - remove `NewCall` view - fix styles & coding style if views
44 lines
997 B
QML
44 lines
997 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
|
|
QtObject {
|
|
property QtObject infoBar: QtObject {
|
|
property color color: Colors.e
|
|
property int avatarSize: 60
|
|
property int height: 80
|
|
property int leftMargin: 40
|
|
property int rightMargin: 20
|
|
property int spacing: 20
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int size: 40
|
|
property int spacing: 20
|
|
}
|
|
|
|
property QtObject username: QtObject {
|
|
property color color: Colors.j
|
|
property int fontSize: 13
|
|
}
|
|
}
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int spacing: 20
|
|
property int topMargin: 20
|
|
}
|
|
|
|
property QtObject values: QtObject {
|
|
property int bottomMargin: 20
|
|
property int leftMargin: 40
|
|
property int rightMargin: 20
|
|
property int topMargin: 20
|
|
|
|
property QtObject separator: QtObject {
|
|
property color color: Colors.f
|
|
property int height: 1
|
|
}
|
|
}
|
|
}
|