openPilotLog
newpilotdialog.h
1 /*
2  *openPilotLog - A FOSS Pilot Logbook Application
3  *Copyright (C) 2020-2022 Felix Turowsky
4  *
5  *This program is free software: you can redistribute it and/or modify
6  *it under the terms of the GNU General Public License as published by
7  *the Free Software Foundation, either version 3 of the License, or
8  *(at your option) any later version.
9  *
10  *This program 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 General Public License for more details.
14  *
15  *You should have received a copy of the GNU General Public License
16  *along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 #ifndef NEWPILOT_H
19 #define NEWPILOT_H
20 
21 #include <QDialog>
22 #include <QMessageBox>
23 #include <QRegularExpression>
24 #include <QRegularExpressionValidator>
25 #include <QCompleter>
26 #include "src/database/row.h"
27 
28 namespace Ui {
29 class NewPilot;
30 }
44 class NewPilotDialog : public QDialog
45 {
46  Q_OBJECT
47 public:
48  explicit NewPilotDialog(QWidget *parent = nullptr);
49  explicit NewPilotDialog(int rowId, QWidget *parent = nullptr);
50  ~NewPilotDialog();
51 
52 private slots:
53  void on_buttonBox_accepted();
54 private:
55  Ui::NewPilot *ui;
56 
57  OPL::PilotEntry pilotEntry;
58 
59  inline void setup();
60 
64  void formFiller();
65 
69  void submitForm();
70 };
71 
72 
73 #endif // NEWPILOT_H
The NewPilotDialog enables adding new entries to the pilot table in the database.
Definition: newpilotdialog.h:45
NewPilotDialog(QWidget *parent=nullptr)
NewPilotDialog::NewPilotDialog - creates a new pilot dialog which can be used to add a new entry to t...
Definition: newpilotdialog.cpp:30
A Row representing a Pilot entry. See Row class for details.
Definition: row.h:110