DISPLACE  1.0
A spatial model of fisheries to help sustainable fishing and maritime spatial planning
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mergepopulationdatadialog.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // DISPLACE: DYNAMIC INDIVIDUAL VESSEL-BASED SPATIAL PLANNING
3 // AND EFFORT DISPLACEMENT
4 // Copyright (c) 2012-2019 Francois Bastardie <fba@aqua.dtu.dk>
5 
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // --------------------------------------------------------------------------
20 
21 #ifndef MERGEPOPULATIONDATADIALOG_H
22 #define MERGEPOPULATIONDATADIALOG_H
23 
24 #include <mergedatadialog.h>
26 #include <QDialog>
27 
33 {
34  Q_OBJECT
35 public:
36  explicit MergePopulationDataDialog(QWidget *parent = 0);
37 
38  void setSizeGroupCount (int cnt);
39  QStringList getSelectedStocks();
40  QList<int> getSelectedGroupsIndexes();
41 
43  QString getPopulationOutFileName();
44 signals:
45 
46 public slots:
47 
48 protected:
50 
51  void inputFileSelected();
52 };
53 
54 #endif // MERGEPOPULATIONDATADIALOG_H
void setSizeGroupCount(int cnt)
Definition: mergepopulationdatadialog.cpp:30
bool isPopulationOutChecked()
Definition: mergepopulationdatadialog.cpp:45
QString getPopulationOutFileName()
Definition: mergepopulationdatadialog.cpp:50
QList< int > getSelectedGroupsIndexes()
Definition: mergepopulationdatadialog.cpp:40
MergePopulationPluginComponent * mComponent
Definition: mergepopulationdatadialog.h:49
Implements the UI to merge the population data.
Definition: mergepopulationdatadialog.h:32
QStringList getSelectedStocks()
Definition: mergepopulationdatadialog.cpp:35
void inputFileSelected()
Definition: mergepopulationdatadialog.cpp:55
MergePopulationDataDialog(QWidget *parent=0)
Definition: mergepopulationdatadialog.cpp:23
a "pluggable" Widget to extends the MergeDataDialog This class extends the functionalities of MergeDa...
Definition: mergepopulationplugincomponent.h:35
Implements the functionalities for mergedatadialog.ui.
Definition: mergedatadialog.h:35