forked from 52North/gatherer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemplate_LandUseMapping.qml
123 lines (109 loc) · 4.11 KB
/
Template_LandUseMapping.qml
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
/****************************************************************************
** Copyright (C) 2014-2014 52°North Initiative for Geospatial Open Source
** Software GmbH
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License version 2 as published
** by the Free Software Foundation.
**
** If the program is linked with libraries which are licensed under one of
** the following licenses, the combination of the program with the linked
** library is not considered a "derivative work" of the program:
**
** - Apache License, version 2.0
** - Apache Software License, version 1.0
** - GNU Lesser General Public License, version 3
** - Mozilla Public License, versions 1.0, 1.1 and 2.0
** - Common Development and Distribution License (CDDL), version 1.0.
**
** Therefore the distribution of the program linked with libraries licensed
** under the aforementioned licenses, is permitted by the copyright holders
** if the distribution is compliant with both the GNU General Public
** icense version 2 and the aforementioned licenses.
**
** This program is distributed in the hope that it will be useful, but
** WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
** Public License for more details.
****************************************************************************/
// Author: B.P. Ottow
// Date: August 2014
// GSoC Project: Gatherer, ILWIS Mobile. Hosted by 52 North and ITC Enschede.
//
// This is an example template for landuse mapping
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.1
Rectangle {id:template
width: 768
height: 600
color: "#d4d4d4"
signal returnData(string data)
Text{
y: 50
anchors.centerIn: parent
text:"Landuse Mapping"
font.pointSize: 30
anchors.verticalCenterOffset: -200
anchors.horizontalCenterOffset: 0
}
Text {
id: textField1
x: 100
y: 200
text: qsTr("Land cover class")
font.pixelSize: 25
}
ComboBox {
id: field1;
width:600;
height: 50;
x: 100
y: 200
model: choices
currentIndex: 23
Layout.fillWidth: true
style: ComboBoxStyle {
label: Label {
verticalAlignment: Qt.AlignVCenter
anchors.left: parent.left
anchors.leftMargin: 5
text: control.currentText
color: "#000000"
anchors.fill: parent
font.pixelSize: 20
}
}
}
ListModel {
id: choices
ListElement { text: "Continuous Urban fabric" }
ListElement { text: "Discontinuous Dense Urban Fabric" }
ListElement { text: "Discontinuous Medium Density Urban Fabric" }
ListElement { text: "Discontinuous Low Density Urban Fabric" }
ListElement { text: "Discontinuous Very Low Density Urban Fabric" }
ListElement { text: "Isolated Structures" }
ListElement { text: "Industrial, commercial, public, military and private units" }
ListElement { text: "Fast transit roads and associated land" }
ListElement { text: "Other roads and associated land" }
ListElement { text: "Railways and associated land" }
ListElement { text: "Port areas" }
ListElement { text: "Airports" }
ListElement { text: "Mineral extraction and dump sites" }
ListElement { text: "Construction sites" }
ListElement { text: "Land without current use" }
ListElement { text: "Green urban areas" }
ListElement { text: "Sports and leisure facilities" }
ListElement { text: "Agricultural Areas, semi-natural areas and wetlands" }
ListElement { text: "Forests" }
ListElement { text: "Water" }
ListElement { text: "No data" }
}
function getData ()
{
var returnValue = "&field1=";
returnValue = returnValue + field1.currentText;
template.returnData(returnValue);
}
}