14.06.2023

This commit is contained in:
Plotnikov
2023-06-14 18:08:32 +03:00
parent b0a0566f19
commit bdf6eab9ec
221 changed files with 203557 additions and 585 deletions

View File

@@ -0,0 +1,30 @@
#ifndef SPLASHFORM_H
#define SPLASHFORM_H
#include <QDialog>
#include <QWindow>
#include <QTimer>
namespace Ui {
class SplashForm;
}
class SplashForm : public QDialog
{
Q_OBJECT
public:
explicit SplashForm(QWidget *parent = nullptr);
~SplashForm();
void Reset();
void Step();
void SetTitle(QString title);
void ErrMessage(QString title, QString msg);
QTimer* timer;
private:
Ui::SplashForm *ui;
};
#endif // SPLASHFORM_H