All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MosaicWizardPage.h
Go to the documentation of this file.
1 /* Copyright (C) 2011-2012 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  /*!
54  \class MosaicWizardPage
55 
56  \brief This class is GUI used to define the mosaic parameters for the RP mosaic operation.
57  */
58  class TEQTWIDGETSEXPORT MosaicWizardPage : public QWizardPage
59  {
60  Q_OBJECT
61 
63  {
66  MOSAIC_SEQUENCE
67  };
68 
69  public:
70 
71  MosaicWizardPage(QWidget* parent = 0);
72 
74 
75  bool isComplete() const;
76 
77  public:
78 
79  bool isGeoMosaic();
80 
81  bool isTiePointMosaic();
82 
83  bool isSequenceMosaic();
84 
85  void setList(std::list<te::map::AbstractLayerPtr>& layerList);
86 
87  te::rp::GeoMosaic::InputParameters getInputGeoParams();
88 
89  te::rp::GeoMosaic::OutputParameters getOutputGeoParams();
90 
92 
94 
95  te::rp::SequenceMosaic::InputParameters getInputSeqParams();
96 
97  te::rp::SequenceMosaic::OutputParameters getOutputSeqParams();
98 
99  te::map::AbstractLayerPtr getTiePointMosaicLayerA();
100 
101  te::map::AbstractLayerPtr getTiePointMosaicLayerB();
102 
103  public slots:
104 
105  void onTiePointsAcquiredToolButtonClicked();
106 
107  protected:
108 
109  void fillMosaicTypes();
110 
111  private:
112 
113  std::auto_ptr<Ui::MosaicWizardPageForm> m_ui;
114 
115  std::list<te::map::AbstractLayerPtr> m_layerList;
116 
117  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).
118 
119  };
120 
121  } // end namespace widgets
122  } // end namespace qt
123 } // end namespace te
124 
125 #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
This class is GUI used to define the mosaic parameters for the RP mosaic operation.
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:66
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 ...