qt: added about box

This commit is contained in:
user 2020-12-17 22:17:05 +08:00
parent 06a7e181cd
commit 082c4f1104
9 changed files with 353 additions and 30 deletions

22
qt/i2pd_qt/AboutDialog.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = 0);
~AboutDialog();
private:
Ui::AboutDialog *ui;
};
#endif // ABOUTDIALOG_H