swift
corestatuscomponent.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2015 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_CORESTATUSCOMPONENT_H
7 #define SWIFT_GUI_COMPONENTS_CORESTATUSCOMPONENT_H
8 
9 #include <QFrame>
10 #include <QObject>
11 #include <QScopedPointer>
12 
13 #include "gui/swiftguiexport.h"
14 
15 class QWidget;
16 
17 namespace Ui
18 {
19  class CCoreStatusComponent;
20 }
21 
22 namespace swift::gui::components
23 {
25  class SWIFT_GUI_EXPORT CCoreStatusComponent : public QFrame
26  {
27  Q_OBJECT
28 
29  public:
31  explicit CCoreStatusComponent(QWidget *parent = nullptr);
32 
35 
36  private:
37  QScopedPointer<Ui::CCoreStatusComponent> ui;
38  };
39 
40 } // namespace swift::gui::components
41 
42 #endif // SWIFT_GUI_COMPONENTS_CORESTATUSCOMPONENT_H
Display status information about the core.
High level reusable GUI components.
Definition: aboutdialog.cpp:13
#define SWIFT_GUI_EXPORT
Export a class or function from the library.