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 
44 namespace Ui { class MainWindowDialogForm; }
45 
46 // Forward declarations
47 class QModelIndex;
48 
49 namespace 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  */
75  te::map::AbstractLayerPtr getLayer();
76 
77  protected slots:
78 
79  void onLayerComboBoxChanged(int index);
80 
81  void onInitialLeftComboBoxChanged(int index);
82 
83  void onFinalLeftComboBoxChanged(int index);
84 
85  void onInitialRightComboBoxChanged(int index);
86 
87  void onFinalRightComboBoxChanged(int index);
88 
89  void onConfigureLayerClicked();
90 
91  void onAddressComboBoxChanged(int index);
92 
93  void onTargetFileAddressToolButtonPressed();
94 
95  void onEditAddressToolButtonPressed();
96 
97  void onRemoveAddressToolButtonPressed();
98 
99  void onTargetDatasourceToolButtonPressed();
100 
101  void onTargetFileToolButtonPressed();
102 
103  void onOkPushButtonClicked();
104 
105  void onCancelPushButtonClicked();
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::auto_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 
133  bool m_toFile;
134 
135  };
136  } // end namespace addressgeocoding
137 } // end namespace te
138 
139 #endif // __TERRALIB_ADDRESSGEOCODING_INTERNAL_MAINWINDOWDIALOG_H
boost::shared_ptr< DataSource > DataSourcePtr
Definition: DataSource.h:1435
std::list< te::map::AbstractLayerPtr > m_layers
List of layers.
std::vector< std::string > m_associatedProps
URI C++ Library.
te::da::DataSourceInfoPtr m_outputDatasource
DataSource information.
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.
std::auto_ptr< Ui::MainWindowDialogForm > m_ui
std::map< std::string, std::vector< std::string > > m_mapFields
#define TEADDRESSGEOCODINGEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:61
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr
boost::shared_ptr< DataSourceInfo > DataSourceInfoPtr
te::map::AbstractLayerPtr m_selectedLayer
List of layers.