GeoPackagePublisherDialog.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 src/terraMobilePlugin/qt/GeoPackagePublisherDialog.h
22 
23 \brief This interface is used to get the input parameters for GeoPackage Publisher operation.
24 */
25 
26 #ifndef __TE_QT_PLUGINS_TERRAMOBILE_INTERNAL_GEOPACKAGEPUBLISHERDIALOG_H
27 #define __TE_QT_PLUGINS_TERRAMOBILE_INTERNAL_GEOPACKAGEPUBLISHERDIALOG_H
28 
29 // TerraLib
30 #include "../../../../common/progress/TaskProgress.h"
31 #include "../../../../maptools/AbstractLayer.h"
32 #include "../Config.h"
33 
34 // STL
35 #include <memory>
36 
37 // Qt
38 #include <QDialog>
39 
40 namespace Ui { class GeoPackagePublisherDialogForm; }
41 
42 namespace te
43 {
44  namespace qt
45  {
46  namespace plugins
47  {
48  namespace terramobile
49  {
50  /*!
51  \class GeoPackagePublisherDialog
52 
53  \brief This interface is used to get the input parameters for GeoPackage Publisher operation.
54  */
55  class GeoPackagePublisherDialog : public QDialog
56  {
57  Q_OBJECT
58 
59  public:
60 
61  GeoPackagePublisherDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
62 
64 
65  public slots:
66 
68 
70 
72 
74 
76 
77  void onSetCurrentStep(double curStep, double totalStep, std::string msg);
78 
79  private:
80 
81  std::auto_ptr<Ui::GeoPackagePublisherDialogForm> m_ui;
82 
84 
85  };
86  } // end namespace thirdParty
87  } // end namespace plugins
88  } // end namespace qt
89 } // end namespace te
90 
91 #endif // __TE_QT_PLUGINS_TERRAMOBILE_INTERNAL_GEOPACKAGEPUBLISHERDIALOG_H
92 
This interface is used to get the input parameters for GeoPackage Publisher operation.
This class can be used to inform the progress of a task.
Definition: TaskProgress.h:53
std::auto_ptr< Ui::GeoPackagePublisherDialogForm > m_ui
URI C++ Library.
GeoPackagePublisherDialog(QWidget *parent=0, Qt::WindowFlags f=0)
void onSetCurrentStep(double curStep, double totalStep, std::string msg)