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 ColorPickerToolButton;
59  class WhereClauseWidget;
60 
61  /*!
62  \class QueryDialog
63 
64  \brief This file defines a class for a Query Dialog Dialog.
65  */
66  class TEQTWIDGETSEXPORT QueryDialog : public QDialog, public InterfaceController
67  {
68  Q_OBJECT
69 
70  public:
71 
72  QueryDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
73 
74  ~QueryDialog();
75 
76  public:
77 
79 
80  /*!
81  \brief This method is used to set the list of layers
82 
83  */
84  void setLayerList(std::list<te::map::AbstractLayerPtr>& layerList);
85 
86  /*!
87  \brief This method is used to set current layer
88 
89  */
90  void setCurrentLayer(te::map::AbstractLayerPtr layer);
91 
92  /*!
93  \brief This method is used to set the alias name
94 
95  */
96  std::string setAliasName(std::string value);
97 
98  te::da::Where* getWhere();
99 
100 
101  public:
102 
103  /*!
104  \brief This method is used to set current layer
105 
106  */
107  virtual void layerSelected(te::map::AbstractLayerPtr layer);
108 
109  /*!
110  \brief This method is used to add a new layer
111 
112  */
113  virtual void layerAdded(te::map::AbstractLayerPtr layer);
114 
115  /*!
116  \brief This method is used to remove a layer
117 
118  */
119  virtual void layerRemoved(te::map::AbstractLayerPtr layer);
120 
121 
122  protected slots:
123 
124  void onInputLayerActivated(QString value);
125 
126  void onApplyPushButtonClicked();
127 
128  signals:
129 
130  /*! This signal is emitted when the layer selection changed. */
131  void layerSelectedObjectsChanged(const te::map::AbstractLayerPtr& layer);
132 
133  /*! This signal is emitted when the layer objects must be highlighted. */
134  void highlightLayerObjects(const te::map::AbstractLayerPtr& layer, te::da::DataSet* dataset, const QColor& color);
135 
136  private:
137 
138  std::auto_ptr<Ui::QueryDialogForm> m_ui;
139  std::auto_ptr<te::qt::widgets::WhereClauseWidget> 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
std::auto_ptr< Ui::QueryDialogForm > m_ui
Definition: QueryDialog.h:138
A virtual class for non modal interfaces.
Custom tool button used to pick a color.
URI C++ Library.
A class that can be used to model a filter expression that can be applied to a query.
Definition: Where.h:47
This class is used to define the WHERE object of select operation.
This file defines a class for a Query Dialog Dialog.
Definition: QueryDialog.h:66
std::auto_ptr< te::qt::widgets::WhereClauseWidget > m_whereClauseWidget
Definition: QueryDialog.h:139
ColorPickerToolButton * m_colorPicker
Definition: QueryDialog.h:140
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