5c97aae6da
They share so much code and functionality that they may as well be one class.
48 lines
890 B
C++
48 lines
890 B
C++
// Copyright (c) 2011-2014 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef UTILITYDIALOG_H
|
|
#define UTILITYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QObject>
|
|
|
|
class BitcoinGUI;
|
|
class ClientModel;
|
|
|
|
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 slots:
|
|
void on_okButton_accepted();
|
|
};
|
|
|
|
|
|
/** "Shutdown" window */
|
|
class ShutdownWindow : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void showShutdownWindow(BitcoinGUI *window);
|
|
};
|
|
|
|
#endif // UTILITYDIALOG_H
|