ConfigInputLayerDialog.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/ConfigInputLayerDialog.h
22 
23  \brief A dialog configure the input layer to address geocoding operation
24 */
25 
26 #ifndef __TERRALIB_ADDRESSGEOCODING_INTERNAL_CONFIGINPUTLAYERDIALOG_H
27 #define __TERRALIB_ADDRESSGEOCODING_INTERNAL_CONFIGINPUTLAYERDIALOG_H
28 
29 // TerraLib
30 #include "../../dataaccess/datasource/DataSourceInfo.h"
31 #include "../../dataaccess/datasource/DataSource.h"
32 #include "../../datatype/Property.h"
33 #include "../../qt/widgets/utils/DoubleListWidget.h"
34 #include "../../maptools/AbstractLayer.h"
35 #include "../Config.h"
36 
37 // STL
38 #include <map>
39 #include <memory>
40 
41 // Qt
42 #include <QDialog>
43 
44 namespace Ui { class ConfigInputLayerDialogForm; }
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  ConfigInputLayerDialog(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  te::map::AbstractLayerPtr getLayer();
71 
72  te::da::DataSourcePtr getDataSource();
73 
74  protected slots:
75 
76  void onInputLayerComboBoxChanged(int index);
77 
78  void onNumberPushButtonClicked();
79 
80  void onHelpPushButtonClicked();
81 
82  void onOkPushButtonClicked();
83 
84  void onCancelPushButtonClicked();
85 
86  private:
87 
88  std::auto_ptr<Ui::ConfigInputLayerDialogForm> m_ui;
89  std::auto_ptr<te::qt::widgets::DoubleListWidget> m_widget;
90  std::list<te::map::AbstractLayerPtr> m_layers; //!< List of layers.
92  te::map::AbstractLayerPtr m_selectedLayer; //!< Layer used for address geocoding
93  std::vector<std::string> m_selectedProps; //!< Selected properties related to the selected Layer
94 
95  };
96  } // end namespace addressgeocoding
97 } // end namespace te
98 
99 #endif // __TERRALIB_ADDRESSGEOCODING_INTERNAL_CONFIGINPUTLAYERDIALOG_H
boost::shared_ptr< DataSource > DataSourcePtr
Definition: DataSource.h:1435
std::auto_ptr< Ui::ConfigInputLayerDialogForm > m_ui
te::map::AbstractLayerPtr m_selectedLayer
Layer used for address geocoding.
URI C++ Library.
std::list< te::map::AbstractLayerPtr > m_layers
List of layers.
#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
std::vector< std::string > m_selectedProps
Selected properties related to the selected Layer.
std::auto_ptr< te::qt::widgets::DoubleListWidget > m_widget