2014-04-03 15:29:13 -04:00
|
|
|
// -*- Mode: C++ -*-
|
2012-05-22 13:09:48 -04:00
|
|
|
#ifndef ABOUTDLG_H
|
|
|
|
#define ABOUTDLG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-03-29 21:31:40 -04:00
|
|
|
#include <QScopedPointer>
|
2012-05-22 13:09:48 -04:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-03-29 21:31:40 -04:00
|
|
|
class CAboutDlg;
|
2012-05-22 13:09:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class CAboutDlg : public QDialog
|
|
|
|
{
|
2014-03-29 21:31:40 -04:00
|
|
|
Q_OBJECT;
|
2012-05-22 13:09:48 -04:00
|
|
|
|
|
|
|
public:
|
2014-04-13 13:22:12 -04:00
|
|
|
explicit CAboutDlg(QString const& program_title, QWidget *parent = nullptr);
|
2014-03-29 21:31:40 -04:00
|
|
|
~CAboutDlg ();
|
|
|
|
|
2012-05-22 13:09:48 -04:00
|
|
|
private:
|
2014-03-29 21:31:40 -04:00
|
|
|
QScopedPointer<Ui::CAboutDlg> ui;
|
2012-05-22 13:09:48 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUTDLG_H
|