MosaicWizardPage.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/MosaicWizardPage.h
22 
23  \brief This file defines a class for a Mosaic Wizard page.
24 */
25 
26 #ifndef __TERRALIB_QT_WIDGETS_RP_INTERNAL_MOSAICWIZARDPAGE_H
27 #define __TERRALIB_QT_WIDGETS_RP_INTERNAL_MOSAICWIZARDPAGE_H
28 
29 // TerraLib
30 #include "../../../geometry/GTParameters.h"
31 #include "../../../maptools/AbstractLayer.h"
32 #include "../../../rp/GeoMosaic.h"
33 #include "../../../rp/SequenceMosaic.h"
34 #include "../../../rp/TiePointsMosaic.h"
35 #include "../Config.h"
36 
37 // STL
38 #include <memory>
39 
40 // Qt
41 #include <QWizardPage>
42 
43 
44 // Forward declaration
45 namespace Ui { class MosaicWizardPageForm; }
46 
47 namespace te
48 {
49  namespace qt
50  {
51  namespace widgets
52  {
53  class TiePointLocatorParametersWidget;
54 
55  /*!
56  \class MosaicWizardPage
57 
58  \brief This class is GUI used to define the mosaic parameters for the RP mosaic operation.
59  */
60  class TEQTWIDGETSEXPORT MosaicWizardPage : public QWizardPage
61  {
62  Q_OBJECT
63 
65  {
68  MOSAIC_SEQUENCE
69  };
70 
71  public:
72 
73  MosaicWizardPage(QWidget* parent = 0);
74 
76 
77  bool isComplete() const;
78 
79  public:
80 
81  bool isGeoMosaic();
82 
83  bool isTiePointMosaic();
84 
85  bool isSequenceMosaic();
86 
87  void setList(std::list<te::map::AbstractLayerPtr>& layerList);
88 
89  te::rp::GeoMosaic::InputParameters getInputGeoParams();
90 
91  te::rp::GeoMosaic::OutputParameters getOutputGeoParams();
92 
94 
96 
97  te::rp::SequenceMosaic::InputParameters getInputSeqParams();
98 
99  te::rp::SequenceMosaic::OutputParameters getOutputSeqParams();
100 
101  te::map::AbstractLayerPtr getTiePointMosaicLayerA();
102 
103  te::map::AbstractLayerPtr getTiePointMosaicLayerB();
104 
105  public slots:
106 
107  void onTiePointsAcquiredToolButtonClicked();
108 
109  protected:
110 
111  void fillMosaicTypes();
112 
113  private:
114 
115  std::auto_ptr<Ui::MosaicWizardPageForm> m_ui;
116 
118 
119  std::list<te::map::AbstractLayerPtr> m_layerList;
120 
121  std::vector< std::vector< te::gm::GTParameters::TiePoint > > m_tiePoints; //!< Tie-points between each adjacent raster pair (te::gm::GTParameters::TiePoint::first are raster (with index i) lines/columns, te::gm::GTParameters::TiePoint::second are raster (with index I+1) lines/columns ,and so on).
122 
123  };
124 
125  } // end namespace widgets
126  } // end namespace qt
127 } // end namespace te
128 
129 #endif // __TERRALIB_QT_WIDGETS_RP_INTERNAL_MOSAICWIZARDPAGE_H
std::auto_ptr< Ui::MosaicWizardPageForm > m_ui
GeoMosaic input parameters.
Definition: GeoMosaic.h:56
std::list< te::map::AbstractLayerPtr > m_layerList
te::qt::widgets::TiePointLocatorParametersWidget * m_tiePointParameters
Tie Point parameters widget.
URI C++ Library.
This class is GUI used to define the mosaic parameters for the RP mosaic operation.
This class is used to define a widget for tie point parameters acquirement.
GeoMosaic output parameters.
Definition: GeoMosaic.h:100
#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< std::vector< te::gm::GTParameters::TiePoint > > m_tiePoints
Tie-points between each adjacent raster pair (te::gm::GTParameters::TiePoint::first are raster (with ...