]>
Commit | Line | Data |
---|---|---|
e592d43f WL |
1 | // Copyright (c) 2011-2013 The Bitcoin developers |
2 | // Distributed under the MIT/X11 software license, see the accompanying | |
3 | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
4 | ||
1355cfe1 WL |
5 | #ifndef ABOUTDIALOG_H |
6 | #define ABOUTDIALOG_H | |
7 | ||
8 | #include <QDialog> | |
9 | ||
3a7abc2c WL |
10 | namespace Ui { |
11 | class AboutDialog; | |
12 | } | |
0052fe7b | 13 | class ClientModel; |
3a7abc2c | 14 | |
af836ad5 | 15 | /** "About" dialog box */ |
1355cfe1 WL |
16 | class AboutDialog : public QDialog |
17 | { | |
18 | Q_OBJECT | |
3a7abc2c | 19 | |
1355cfe1 WL |
20 | public: |
21 | explicit AboutDialog(QWidget *parent = 0); | |
3a7abc2c | 22 | ~AboutDialog(); |
1355cfe1 | 23 | |
0052fe7b | 24 | void setModel(ClientModel *model); |
8823b4ac | 25 | |
3a7abc2c WL |
26 | private: |
27 | Ui::AboutDialog *ui; | |
1355cfe1 | 28 | |
3a7abc2c WL |
29 | private slots: |
30 | void on_buttonBox_accepted(); | |
1355cfe1 WL |
31 | }; |
32 | ||
33 | #endif // ABOUTDIALOG_H |