summaryrefslogtreecommitdiff
path: root/src/hmi/qml/Core/NavigationAppHMIBgImage.qml
blob: d896a0c310fa75dcf545d685e38c1e0a821139ca (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
/**
* @licence app begin@
* SPDX-License-Identifier: MPL-2.0
*
*
* \file NavigationAppHMIBgImage.qml
*
* \brief This file is part of the navigation hmi.
*
* \author Martin Schaller <martin.schaller@it-schaller.de>
* \author Philippe Colliot <philippe.colliot@mpsa.com>
*
* \version 
*
* 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:
* 2014-05-08, Philippe Colliot, use of css file so change path of the image
* <date>, <name>, <description of change>
*
* @licence end@
*/
import QtQuick 2.1 

BorderImage {
	property string image;
	source:"../"+image;
	anchors { fill: parent; topMargin: parent.headlineHeight}
}