Loading...
Searching...
No Matches
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
44namespace Ui { class QueryDialogForm; }
45
46namespace 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
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 */
88
89 /*!
90 \brief This method is used to set the alias name
91
92 */
93 std::string setAliasName(std::string value);
94
96
97
98 public:
99
100 /*!
101 \brief This method is used to set current layer
102
103 */
105
106 /*!
107 \brief This method is used to add a new layer
108
109 */
111
112 /*!
113 \brief This method is used to remove a layer
114
115 */
117
118
119 protected slots:
120
122
123 void onInputLayerActivated(QString value);
124
126
127 signals:
128
129 /*! This signal is emitted when the layer selection changed. */
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
A dataset is the unit of information manipulated by the data access module of TerraLib.
Definition: DataSet.h:114
A class that can be used to model a filter expression that can be applied to a query.
Definition: Where.h:48
A virtual class for non modal interfaces.
This file defines a class for a Query Dialog Dialog.
Definition: QueryDialog.h:66
void setCurrentLayer(te::map::AbstractLayerPtr layer)
This method is used to set current layer.
void createLayer(te::map::AbstractLayerPtr layer)
std::unique_ptr< te::qt::widgets::SpatialWhereClauseWidget > m_whereClauseWidget
Definition: QueryDialog.h:140
void highlightLayerObjects(const te::map::AbstractLayerPtr &layer, te::da::DataSet *dataset, const QColor &color)
void onInputLayerActivated(QString value)
virtual void layerSelected(te::map::AbstractLayerPtr layer)
This method is used to set current layer.
std::unique_ptr< Ui::QueryDialogForm > m_ui
Definition: QueryDialog.h:139
void setLayerList(std::list< te::map::AbstractLayerPtr > &layerList)
This method is used to set the list of layers.
QueryDialog(QWidget *parent=0, Qt::WindowFlags f=0)
te::da::Where * getWhere()
std::string setAliasName(std::string value)
This method is used to set the alias name.
virtual void layerRemoved(te::map::AbstractLayerPtr layer)
This method is used to remove a layer.
void layerSelectedObjectsChanged(const te::map::AbstractLayerPtr &layer)
virtual void layerAdded(te::map::AbstractLayerPtr layer)
This method is used to add a new layer.
boost::intrusive_ptr< AbstractLayer > AbstractLayerPtr
TerraLib.
#define slots
#define TEQTWIDGETSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:63