Изменение базового класса окна About
[novacoin.git] / src / qt / aboutdialog.h
1 #ifndef ABOUTDIALOG_H
2 #define ABOUTDIALOG_H
3
4 #include <QWidget>
5
6 namespace Ui {
7     class AboutDialog;
8 }
9 class ClientModel;
10
11 /** "About" dialog box */
12 class AboutDialog : public QWidget
13 {
14     Q_OBJECT
15
16 public:
17     explicit AboutDialog(QWidget *parent = 0);
18     ~AboutDialog();
19
20     void setModel(ClientModel *model);
21 private:
22     Ui::AboutDialog *ui;
23
24     void keyPressEvent(QKeyEvent *);
25
26 private slots:
27     void on_buttonBox_accepted();
28 };
29
30 #endif // ABOUTDIALOG_H