StartingCallStyle.qml 851 Bytes
Newer Older
1 2 3 4 5 6 7 8
pragma Singleton
import QtQuick 2.7

import Common 1.0

// ===================================================================

QtObject {
9
  property color backgroundColor: Colors.f
10 11 12
  property int actionAreaHeight: 100
  property int contactDescriptionHeight: 60
  property int containerMargins: 20
13 14
  property int iconSize: 40
  property int leftButtonsGroupMargin: 50
15
  property int rightButtonsGroupMargin: 50
16 17

  property QtObject avatar: QtObject {
18
    property color backgroundColor: Colors.w
19 20 21 22
    property int maxSize: 300
  }

  property QtObject callType: QtObject {
23
    property color color: Colors.x
24 25
    property int fontSize: 17
  }
26 27 28 29 30 31 32 33 34 35

  property QtObject header: QtObject {
    property int spacing: 10
    property int topMargin: 26
  }

  property QtObject userVideo: QtObject {
    property int width: 130
    property int height: 90
  }
36
}