mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-13 05:12:34 -03:00
91aced7c7e
Remove Node references no longer needed after previous commit
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
// Copyright (c) 2011-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_UTILITYDIALOG_H
|
|
#define BITCOIN_QT_UTILITYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QMainWindow;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Ui {
|
|
class HelpMessageDialog;
|
|
}
|
|
|
|
/** "Help message" dialog box */
|
|
class HelpMessageDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit HelpMessageDialog(QWidget *parent, bool about);
|
|
~HelpMessageDialog();
|
|
|
|
void printToConsole();
|
|
void showOrPrint();
|
|
|
|
private:
|
|
Ui::HelpMessageDialog *ui;
|
|
QString text;
|
|
|
|
private Q_SLOTS:
|
|
void on_okButton_accepted();
|
|
};
|
|
|
|
|
|
/** "Shutdown" window */
|
|
class ShutdownWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ShutdownWindow(QWidget *parent=nullptr, Qt::WindowFlags f=Qt::Widget);
|
|
static QWidget* showShutdownWindow(QMainWindow* window);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
};
|
|
|
|
#endif // BITCOIN_QT_UTILITYDIALOG_H
|