RasterEditWizardPage.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/rp/RasterEditWizardPage.h
22 
23  \brief This file defines a class for raster data edition.
24 */
25 
26 #ifndef __TERRALIB_QT_WIDGETS_RP_INTERNAL_RASTEREDITWIZARDPAGE_H
27 #define __TERRALIB_QT_WIDGETS_RP_INTERNAL_RASTEREDITWIZARDPAGE_H
28 
29 // TerraLib
30 #include "../../../geometry/Envelope.h"
31 #ifndef Q_MOC_RUN
32 #include "../../../maptools/AbstractLayer.h"
33 #include "../../../qt/widgets/canvas/MapDisplay.h"
34 #endif
35 #include "../Config.h"
36 
37 // STL
38 #include <memory>
39 
40 // Qt
41 #include <QWizardPage>
42 #include <QActionGroup>
43 
44 // Forward declaration
45 namespace Ui { class RasterEditWizardPageForm; }
46 
47 namespace te
48 {
49  namespace qt
50  {
51  namespace widgets
52  {
53  class RpToolsWidget;
54 
55  /*!
56  \class RasterEditWizardPage
57 
58  \brief This class is GUI used to define the parameters raster data edition.
59  */
60  class TEQTWIDGETSEXPORT RasterEditWizardPage : public QWizardPage
61  {
62  Q_OBJECT
63 
64  public:
65 
67  {
69  EDITION_ROI_ASSISTED
70  };
71 
72  RasterEditWizardPage(QWidget* parent = 0);
73 
75 
76  bool isComplete() const;
77 
78  public:
79 
80 // /*!
81 // \brief This method is used to set the selected layer for clipping operation
82 //
83 // \param layer The layer ptr
84 //
85 // \note This layer MUST HAVE a valid raster object.
86 // */
87  void setLayer(te::map::AbstractLayerPtr layer);
88 //
89 // void setList(std::list<te::map::AbstractLayerPtr>& layerList);
90 //
91  void setMapDisplay(te::qt::widgets::MapDisplay* mapDisplay);
92 //
93  void setActionGroup(QActionGroup* actionGroup);
94 //
95  te::map::AbstractLayerPtr getLayer();
96 //
97  RASTER_EDITION_TYPE getEditionType();
98 
99  int getBand();
100 
101  void getROIs(std::vector<te::gm::Geometry*> &geomVec);
102 
103  void clearCanvas();
104 
105  void drawGeom();
106 
107  void getReplaceValues( std::vector< std::pair< double, double > >& replaceValues ) const;
108 
109  public slots:
110 
111  void addValuesPushButtonClicked();
112 
113  void removeValuesPushButtonClicked();
114 
115  void onEnvelopeAcquired(te::gm::Envelope env);
116 
117  void onGeomAquired(te::gm::Polygon* poly);
118 
119  void onSelectRoiItem();
120 
121  void onRemoveRoiItem();
122 
123  protected:
124 
125  private:
126 
127  void addRoiItem();
128 
129  private:
130 
131  std::unique_ptr<Ui::RasterEditWizardPageForm> m_ui;
132  std::unique_ptr<te::qt::widgets::RpToolsWidget> m_navigator;
134  std::vector<te::gm::Geometry*> m_geomVec;
136  };
137 
138  } // end namespace widgets
139  } // end namespace qt
140 } // end namespace te
141 
142 #endif // __TERRALIB_QT_WIDGETS_RP_INTERNAL_RASTEREDITWIZARDPAGE_H
#define slots
std::unique_ptr< te::qt::widgets::RpToolsWidget > m_navigator
te::qt::widgets::MapDisplay * m_mapDisplay
A widget to control the display of a set of layers.
Definition: MapDisplay.h:71
This class is GUI used to define the parameters raster data edition.
std::unique_ptr< Ui::RasterEditWizardPageForm > m_ui
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:51
TerraLib.
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings.
Definition: Polygon.h:50
#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
std::vector< te::gm::Geometry * > m_geomVec