2013-11-04 15:20:43 +00:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-08 20:23:31 +00:00
|
|
|
#ifndef ABOUTDIALOG_H
|
|
|
|
#define ABOUTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2013-04-13 05:13:08 +00:00
|
|
|
class ClientModel;
|
|
|
|
|
2011-05-12 15:55:24 +00:00
|
|
|
namespace Ui {
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
|
|
|
|
2011-11-13 12:19:52 +00:00
|
|
|
/** "About" dialog box */
|
2011-05-08 20:23:31 +00:00
|
|
|
class AboutDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-05-12 15:55:24 +00:00
|
|
|
|
2011-05-08 20:23:31 +00:00
|
|
|
public:
|
2013-11-14 18:47:45 +00:00
|
|
|
explicit AboutDialog(QWidget *parent);
|
2011-05-12 15:55:24 +00:00
|
|
|
~AboutDialog();
|
2011-05-08 20:23:31 +00:00
|
|
|
|
2011-07-01 15:06:36 +00:00
|
|
|
void setModel(ClientModel *model);
|
2013-02-01 06:28:32 +00:00
|
|
|
|
2011-05-12 15:55:24 +00:00
|
|
|
private:
|
|
|
|
Ui::AboutDialog *ui;
|
2011-05-08 20:23:31 +00:00
|
|
|
|
2011-05-12 15:55:24 +00:00
|
|
|
private slots:
|
|
|
|
void on_buttonBox_accepted();
|
2011-05-08 20:23:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUTDIALOG_H
|