Loading...
Searching...
No Matches
MainWindowDialog.h
Go to the documentation of this file.
1/* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2
3 This file is part of the TerraLib - a Framework for building GIS enabled applications.
4
5 TerraLib is free software: you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 TerraLib is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License
16 along with TerraLib. See COPYING. If not, write to
17 TerraLib Team at <terralib-team@terralib.org>.
18 */
19
20/*!
21 \file terralib/addressgeocoding/qt/MainwindowDialog.h
22
23 \brief A main window to address geocoding operation
24*/
25
26#ifndef __TERRALIB_ADDRESSGEOCODING_INTERNAL_MAINWINDOWDIALOG_H
27#define __TERRALIB_ADDRESSGEOCODING_INTERNAL_MAINWINDOWDIALOG_H
28
29// TerraLib
30#include "../../dataaccess/datasource/DataSource.h"
31#include "../../dataaccess/datasource/DataSourceInfo.h"
32#include "../../datatype/Property.h"
33#include "../../maptools/AbstractLayer.h"
34#include "../Config.h"
35
36// STL
37#include <list>
38#include <map>
39#include <memory>
40
41// Qt
42#include <QDialog>
43
44namespace Ui { class MainWindowDialogForm; }
45
46// Forward declarations
47class QModelIndex;
48
49namespace te
50{
51 namespace addressgeocoding
52 {
54 {
55 Q_OBJECT
56
57 public:
58
59 MainWindowDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
60
62
63 /*!
64 \brief Set the layer that can be used
65
66 \param layers List of AbstractLayerPtr
67 */
68 void setLayers(std::list<te::map::AbstractLayerPtr> layers);
69
70 /*!
71 \brief Get the generated layer.
72
73 \return the generated layer.
74 */
76
77 protected slots:
78
79 void onLayerComboBoxChanged(int index);
80
82
84
86
88
90
91 void onAddressComboBoxChanged(int index);
92
94
96
98
100
102
104
106
107 private:
108
109 void GetAddressFilePathToSettings(std::map<std::string, std::vector<std::string> >& mapFields);
110
111 void GetAddressDataSource(std::string fileName);
112
113 std::unique_ptr<Ui::MainWindowDialogForm> m_ui;
114 std::list<te::map::AbstractLayerPtr> m_layers; //!< List of layers.
117 te::map::AbstractLayerPtr m_newColumnLayer; //!< Layer used for tsVector column.
118 std::vector<te::dt::Property*> m_properties; //!< Properties related to the selected Layer
119 te::da::DataSourceInfoPtr m_outputDatasource; //!< DataSource information.
121
122 std::string m_initialLeft;
123 std::string m_finalLeft;
124 std::string m_initialRight;
125 std::string m_finalRight;
126
128 std::map<std::string, std::vector<std::string> > m_mapFields;
129 std::string m_addressFile;
130 std::vector<std::string> m_associatedProps;
131 std::string m_streetNumber;
132
134
135 };
136 } // end namespace addressgeocoding
137} // end namespace te
138
139#endif // __TERRALIB_ADDRESSGEOCODING_INTERNAL_MAINWINDOWDIALOG_H
te::map::AbstractLayerPtr m_selectedLayer
List of layers.
void GetAddressDataSource(std::string fileName)
void GetAddressFilePathToSettings(std::map< std::string, std::vector< std::string > > &mapFields)
std::map< std::string, std::vector< std::string > > m_mapFields
std::vector< std::string > m_associatedProps
te::map::AbstractLayerPtr m_resultLayer
Generated Layer.
std::vector< te::dt::Property * > m_properties
Properties related to the selected Layer.
te::map::AbstractLayerPtr m_newColumnLayer
Layer used for tsVector column.
void setLayers(std::list< te::map::AbstractLayerPtr > layers)
Set the layer that can be used.
te::map::AbstractLayerPtr getLayer()
Get the generated layer.
te::da::DataSourceInfoPtr m_outputDatasource
DataSource information.
MainWindowDialog(QWidget *parent=0, Qt::WindowFlags f=0)
std::unique_ptr< Ui::MainWindowDialogForm > m_ui
std::list< te::map::AbstractLayerPtr > m_layers
List of layers.
boost::shared_ptr< DataSourceInfo > DataSourceInfoPtr
boost::shared_ptr< DataSource > DataSourcePtr
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr
TerraLib.
#define slots
#define TEADDRESSGEOCODINGEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition Config.h:61