summaryrefslogtreecommitdiff
path: root/AudioManagerPoC/presentation_layer/AudioManager.qml
blob: e919680274a4af54cc099fa53871c4f7782cdfaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/**
 * SPDX license identifier: MPL-2.0
 *
 * Copyright (C) 2011-2014, Wind River Systems
 * Copyright (C) 2014, GENIVI Alliance
 *
 * This file is part of GENIVI AudioManager PoC.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License (MPL), v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * For further information see http://www.genivi.org/.
 *
 * List of changes:
 *
 * 21.09.2014, Adrian Scarlat, First version of the code;
 *                             Added Copyright and License information;
 */

import QtQuick 2.2

Rectangle {

  Row{
      y: 20;
      x: 380
      Button {
        objectName: "music"
        text: "Play Music"
        width: 180
      }
  }

  Row {
    spacing: 10
    y: 100;
    x: 50
    Button {
      objectName: "parking"
      text: "Parking Signal"
      width: 200
    }
    Button {
      objectName: "nav"
      text: "Navigation Message"
      width: 250
    }
    Button {
      objectName: "tts"
      text: "Text To Speech"
      width: 200
    }
    Button {
      objectName: "phone"
      text: "Start Phone Call"
      width: 180
    }
  }

  Rectangle
  {
    color: "#000000";
    radius: 5
    width: 410
    height: 110
    x: 45
    y: 175
    Image {
      id: volChart
      source: "image://volumes/1"
      width: 400
      x:5
      y:5
      height: 100
      asynchronous: true
    }
  }

  Timer {
    property int idx: 0
    id: timerImg;
      interval: 1000
      repeat: true
      running: true
      onTriggered: {
        idx++;
        volChart.source = "image://volumes/" + idx; }
  }

  Row {
      z: 3
      x: 50
      y: 300
      spacing: 50
      //CONNECTIONS
      Column {
        x: 5
        width: 450
        z: 4
        Text {
          id: titleConnections
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 12
          }
          color: "#000000"
          text: "CONNECTIONS:"
        }


        Text {
          id: id1
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 9
          }
          color: "#000000"
          objectName: "textConnections"
          text: ""
        }
      }//end connections


      //SOURCES
      Column {
        z: 4
        width: 100
        Text {
          id: titleSources
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 12
          }
          color: "#000000"
          text: "SOURCES"
        }


        Text {
          objectName: "textSources"
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 9
          }
          color: "#000000"
          text: ""
        }
      }//end sources

      //VOLUMES
      Column {
        width: 150
        z: 4
        Text {
          id: titleVolumes
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 12
          }
          color: "#000000"
          text: "VOLUME"
        }

        Text {
          objectName: "textVolumes"
          z: 5
          font {
              family: "Liberation Mono"
              pointSize: 9
              bold: true;
          }
          color: "#000000"
          text: ""
        }
      }//end connections
  }
}