LP-572 WP Editor: Add Apply button
[librepilot.git] / ground / gcs / src / plugins / opmap / opmap_edit_waypoint_dialog.h
bloba9e8a7b374b8c05aa70f72edc4644ac8f66ef897
1 /**
2 ******************************************************************************
4 * @file opmap_edit_waypoint_dialog.h
5 * @author The LibrePilot Project, http://www.librepilot.org Copyright (C) 2017.
6 * The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
7 * @addtogroup GCSPlugins GCS Plugins
8 * @{
9 * @addtogroup OPMapPlugin OpenPilot Map Plugin
10 * @{
11 * @brief The OpenPilot Map plugin
12 *****************************************************************************/
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #ifndef OPMAP_EDIT_WAYPOINT_DIALOG_H
30 #define OPMAP_EDIT_WAYPOINT_DIALOG_H
32 #include <QDialog>
33 #include <QDataWidgetMapper>
34 #include "opmapcontrol/opmapcontrol.h"
35 #include "flightdatamodel.h"
36 namespace Ui {
37 class opmap_edit_waypoint_dialog;
39 using namespace mapcontrol;
41 class opmap_edit_waypoint_dialog : public QWidget {
42 Q_OBJECT
43 public:
44 opmap_edit_waypoint_dialog(QWidget *parent, QAbstractItemModel *model, QItemSelectionModel *selection);
45 ~opmap_edit_waypoint_dialog();
47 /**
48 * @brief public functions
50 * @param
52 void editWaypoint(mapcontrol::WayPointItem *waypoint_item);
54 private:
55 QDataWidgetMapper *mapper;
56 QAbstractItemModel *model;
57 QItemSelectionModel *itemSelection;
58 Ui::opmap_edit_waypoint_dialog *ui;
59 private slots:
61 private slots:
62 void currentIndexChanged(int index);
63 void setupModeWidgets();
64 void setupConditionWidgets();
65 void pushButtonCancel_clicked();
66 void on_pushButtonOK_clicked();
67 void on_pushButtonApply_clicked();
68 void on_pushButtonPrevious_clicked();
69 void on_pushButtonNext_clicked();
70 void enableEditWidgets(bool);
71 void currentRowChanged(QModelIndex, QModelIndex);
74 #endif // OPMAP_EDIT_WAYPOINT_DIALOG_H