Files
GUI/src/forms/settings/AboutForm.h

32 lines
472 B
C
Raw Normal View History

2022-06-14 18:04:44 +08:00
#ifndef ABOUTWIDGET_H_
#define ABOUTWIDGET_H_
#include <QObject>
#include <QWidget>
#include <QDesktopServices>
#include <QUrl>
#include <QFileInfo>
#include <QCoreApplication>
2022-07-14 14:45:37 +08:00
class AboutForm : public QWidget
2022-06-14 18:04:44 +08:00
{
Q_OBJECT
public:
2022-07-14 14:45:37 +08:00
explicit AboutForm(QWidget* aParent = nullptr);
~AboutForm();
2022-06-14 18:04:44 +08:00
QString getGUIVersion();
QString getEmbVersion();
private slots:
void openHelpFile();
private:
void initUiWidget();
};
#endif // ABOUTWIDGET_H_