28 lines
396 B
C++
Executable File
28 lines
396 B
C++
Executable File
#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();
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
private:
|
|
Ui::AboutDialog *ui;
|
|
};
|
|
|
|
#endif // ABOUTDIALOG_H
|