blob: 154bb70b8bb60b328a277d64931c17a346707db2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// 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
|