swift
setuploadingdialog.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2017 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_SETUPLOADINGDIALOG_H
7 #define SWIFT_GUI_COMPONENTS_SETUPLOADINGDIALOG_H
8 
9 #include <QDialog>
10 
11 #include "misc/statusmessagelist.h"
12 
13 namespace Ui
14 {
15  class CSetupLoadingDialog;
16 }
17 namespace swift::gui::components
18 {
22  class CSetupLoadingDialog : public QDialog
23  {
24  Q_OBJECT
25 
26  public:
28  CSetupLoadingDialog(const swift::misc::CStatusMessageList &msgs, QWidget *parent = nullptr);
29 
31  virtual ~CSetupLoadingDialog();
32 
33  private:
34  QScopedPointer<Ui::CSetupLoadingDialog> ui;
35 
37  explicit CSetupLoadingDialog(QWidget *parent = nullptr);
38  };
39 } // namespace swift::gui::components
40 
41 #endif // SWIFT_GUI_COMPONENTS_SETUPLOADINGDIALOG_H
Setup dialog, if loading the boostrap file fails.
CSetupLoadingDialog(const swift::misc::CStatusMessageList &msgs, QWidget *parent=nullptr)
Ctor with messages.
Status messages, e.g. from Core -> GUI.
High level reusable GUI components.
Definition: aboutdialog.cpp:13