swift
networkaircraftvaluescomponent.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2019 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_COMPONENTS_NETWORKAIRCRAFTVALUESCOMPONENT_H
7 #define SWIFT_GUI_COMPONENTS_NETWORKAIRCRAFTVALUESCOMPONENT_H
8 
9 #include <QFrame>
10 #include <QScopedPointer>
11 
12 namespace Ui
13 {
14  class CNetworkAircraftValuesComponent;
15 }
16 namespace swift::gui::components
17 {
19  class CNetworkAircraftValuesComponent : public QFrame
20  {
21  Q_OBJECT
22 
23  public:
25  explicit CNetworkAircraftValuesComponent(QWidget *parent = nullptr);
26 
28  virtual ~CNetworkAircraftValuesComponent() override;
29 
31  void showValues();
32 
33  private:
34  QScopedPointer<Ui::CNetworkAircraftValuesComponent> ui;
35  };
36 } // namespace swift::gui::components
37 
38 #endif // SWIFT_GUI_COMPONENTS_NETWORKAIRCRAFTVALUESCOMPONENT_H
High level reusable GUI components.
Definition: aboutdialog.cpp:13