2022-01-28 12:06:03 +08:00
|
|
|
#ifndef ABOUTDIALOG_H
|
|
|
|
#define ABOUTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QResizeEvent>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class AboutDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AboutDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
|
|
|
~AboutDialog();
|
|
|
|
|
|
|
|
QString getBackupVersion();
|
|
|
|
|
2022-02-22 15:25:28 +08:00
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
|
2022-01-28 12:06:03 +08:00
|
|
|
private:
|
|
|
|
Ui::AboutDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABOUTDIALOG_H
|