1
0

feat: new about dialog

This commit is contained in:
Gary Wang
2020-09-28 20:10:33 +08:00
parent 5ff49f4885
commit f7aaa76985
9 changed files with 317 additions and 68 deletions

28
aboutdialog.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
QT_BEGIN_NAMESPACE
class QTextBrowser;
class QTabWidget;
class QDialogButtonBox;
QT_END_NAMESPACE
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
private:
QTabWidget * m_tabWidget = nullptr;
QDialogButtonBox * m_buttonBox = nullptr;
QTextBrowser * m_helpTextEdit = nullptr;
QTextBrowser * m_aboutTextEdit = nullptr;
QTextBrowser * m_licenseTextEdit = nullptr;
};
#endif // ABOUTDIALOG_H