DISPLACE  1.0
A spatial model of fisheries to help sustainable fishing and maritime spatial planning
shapefileoperationdialog.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 SHAPEFILEOPERATIONDIALOG_H
22 #define SHAPEFILEOPERATIONDIALOG_H
23 
24 #include <QDialog>
25 
26 namespace Ui {
28 }
29 
30 class ShapefileOperationDialog : public QDialog
31 {
32  Q_OBJECT
33 
34 public:
35  explicit ShapefileOperationDialog(QWidget *parent = 0);
37 
38  void setShapefileList(QStringList list);
39  QString selectedShapefile() const;
40 
41 private slots:
42  void on_radioSelectShapefile_toggled(bool checked);
43  void on_radioImportShapefile_toggled(bool checked);
44  void on_cmdBrowse_clicked();
45 
46 private:
48 };
49 
50 #endif // SHAPEFILEOPERATIONDIALOG_H
~ShapefileOperationDialog()
Definition: shapefileoperationdialog.cpp:36
Definition: dteditorwindow.h:32
Definition: ui_shapefileoperationdialog.h:103
void setShapefileList(QStringList list)
Definition: shapefileoperationdialog.cpp:41
Definition: shapefileoperationdialog.h:30
QString selectedShapefile() const
Definition: shapefileoperationdialog.cpp:49
ShapefileOperationDialog(QWidget *parent=0)
Definition: shapefileoperationdialog.cpp:27