swift
aircraftmodelstatisticsdialog.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_GUI_VIEW_AIRCRAFTMODELSTATISTICSDIALOG_H
7 #define SWIFT_GUI_VIEW_AIRCRAFTMODELSTATISTICSDIALOG_H
8 
9 #include <QDialog>
10 #include <QScopedPointer>
11 
13 
14 namespace Ui
15 {
16  class CAircraftModelStatisticsDialog;
17 }
18 namespace swift::gui::views
19 {
21  class CAircraftModelStatisticsDialog : public QDialog
22  {
23  Q_OBJECT
24 
25  public:
27  explicit CAircraftModelStatisticsDialog(QWidget *parent = nullptr);
28 
31 
34 
35  private:
37  void displayHTMLMatrix();
38 
39  QScopedPointer<Ui::CAircraftModelStatisticsDialog> ui;
41  };
42 } // namespace swift::gui::views
43 
44 #endif // SWIFT_GUI_VIEW_AIRCRAFTMODELSTATISTICSDIALOG_H
CAircraftModelStatisticsDialog(QWidget *parent=nullptr)
Constructor.
void analyzeModels(const swift::misc::simulation::CAircraftModelList &models)
Set and analyze the models.
Value object encapsulating a list of aircraft models.
Views, mainly QTableView.