2011-05-08 22:23:31 +02:00
|
|
|
#ifndef ABOUTDIALOG_H
|
|
|
|
#define ABOUTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2011-05-12 17:55:24 +02:00
|
|
|
namespace Ui {
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
2011-07-01 17:06:36 +02:00
|
|
|
class ClientModel;
|
2011-05-12 17:55:24 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** "About" dialog box */
|
2011-05-08 22:23:31 +02:00
|
|
|
class AboutDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-05-12 17:55:24 +02:00
|
|
|
|
2011-05-08 22:23:31 +02:00
|
|
|
public:
|
|
|
|
explicit AboutDialog(QWidget *parent = 0);
|
2011-05-12 17:55:24 +02:00
|
|
|
~AboutDialog();
|
2011-05-08 22:23:31 +02:00
|
|
|
|
2011-07-01 17:06:36 +02:00
|
|
|
void setModel(ClientModel *model);
|
2013-02-01 07:28:32 +01:00
|
|
|
|
2011-05-12 17:55:24 +02:00
|
|
|
private:
|
|
|
|
Ui::AboutDialog *ui;
|
2011-05-08 22:23:31 +02:00
|
|
|
|
2011-05-12 17:55:24 +02:00
|
|
|
private slots:
|
|
|
|
void on_buttonBox_accepted();
|
2011-05-08 22:23:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUTDIALOG_H
|