QueryDialog.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/qt/widgets/query/QueryDialog.h
22 
23  \brief This file defines a class for a Query Dialog Dialog.
24 */
25 
26 #ifndef __TERRALIB_QT_WIDGETS_QUERY_INTERNAL_QUERYDIALOG_H
27 #define __TERRALIB_QT_WIDGETS_QUERY_INTERNAL_QUERYDIALOG_H
28 
29 // TerraLib
30 #ifndef Q_MOC_RUN
31 #include "../../../dataaccess/query/Where.h"
32 #include "../../../maptools/AbstractLayer.h"
33 #include "../Config.h"
34 #include "../InterfaceController.h"
35 #endif
36 
37 // STL
38 #include <memory>
39 
40 // Qt
41 #include <QColor>
42 #include <QDialog>
43 
44 namespace Ui { class QueryDialogForm; }
45 
46 namespace te
47 {
48 // Forward declaration
49  namespace da
50  {
51  class DataSet;
52  }
53 
54  namespace qt
55  {
56  namespace widgets
57  {
58  class SpatialWhereClauseWidget;
59 
60  /*!
61  \class QueryDialog
62 
63  \brief This file defines a class for a Query Dialog Dialog.
64  */
65  class TEQTWIDGETSEXPORT QueryDialog : public QDialog, public InterfaceController
66  {
67  Q_OBJECT
68 
69  public:
70 
71  QueryDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
72 
73  ~QueryDialog();
74 
75  public:
76 
77  /*!
78  \brief This method is used to set the list of layers
79 
80  */
81  void setLayerList(std::list<te::map::AbstractLayerPtr>& layerList);
82 
83  /*!
84  \brief This method is used to set current layer
85 
86  */
87  void setCurrentLayer(te::map::AbstractLayerPtr layer);
88 
89  /*!
90  \brief This method is used to set the alias name
91 
92  */
93  std::string setAliasName(std::string value);
94 
95  te::da::Where* getWhere();
96 
97 
98  public:
99 
100  /*!
101  \brief This method is used to set current layer
102 
103  */
104  virtual void layerSelected(te::map::AbstractLayerPtr layer);
105 
106  /*!
107  \brief This method is used to add a new layer
108 
109  */
110  virtual void layerAdded(te::map::AbstractLayerPtr layer);
111 
112  /*!
113  \brief This method is used to remove a layer
114 
115  */
116  virtual void layerRemoved(te::map::AbstractLayerPtr layer);
117 
118 
119  protected slots:
120 
121  void onCreateLayerPushButtonClicked();
122 
123  void onInputLayerActivated(QString value);
124 
125  void onApplyPushButtonClicked();
126 
127  signals:
128 
129  /*! This signal is emitted when the layer selection changed. */
130  void layerSelectedObjectsChanged(const te::map::AbstractLayerPtr& layer);
131 
132  /*! This signal is emitted when the layer objects must be highlighted. */
133  void highlightLayerObjects(const te::map::AbstractLayerPtr& layer, te::da::DataSet* dataset, const QColor& color);
134 
136 
137  private:
138 
139  std::unique_ptr<Ui::QueryDialogForm> m_ui;
140  std::unique_ptr<te::qt::widgets::SpatialWhereClauseWidget> m_whereClauseWidget;
141  };
142 
143  } // end namespace widgets
144  } // end namespace qt
145 } // end namespace te
146 
147 #endif // __TERRALIB_QT_WIDGETS_QUERY_INTERNAL_QUERYDIALOG_H
#define slots
TEQTWIDGETSEXPORT te::map::AbstractLayerPtr createLayer(const std::string &driverName, const te::core::URI &connInfo)
A virtual class for non modal interfaces.
std::unique_ptr< Ui::QueryDialogForm > m_ui
Definition: QueryDialog.h:139
std::unique_ptr< te::qt::widgets::SpatialWhereClauseWidget > m_whereClauseWidget
Definition: QueryDialog.h:140
TerraLib.
A class that can be used to model a filter expression that can be applied to a query.
Definition: Where.h:47
This file defines a class for a Query Dialog Dialog.
Definition: QueryDialog.h:65
A dataset is the unit of information manipulated by the data access module of TerraLib.
Definition: DataSet.h:112
#define TEQTWIDGETSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:63
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr