Add sample qml application
[staging/HomeScreen.git] / sample-qml / apps / HVAC_org / MiddleColumn.qml
1 /* Copyright (C) 2015, Jaguar Land Rover. All Rights Reserved.
2  *
3  * This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6
7 import QtQuick 2.0
8 import components 1.0
9 import utils 1.0
10
11 Item {
12     id: root
13
14     width: 239
15     height: 800
16
17     property string side: "left"
18
19     Column {
20         spacing: 50
21
22         BoxHeading {
23             color: Style.orangeViv
24             boxWidth: 45
25             boxHeight: 19
26             fontSize: 27
27             text: (side === "left" ? "L" : "R" ) + " CLIMATE"
28         }
29
30         SeatHeatButton { side: root.side }
31         TemperatureWheel { side: root.side }
32     }
33 }