mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/MI-38.git
synced 2026-01-24 02:35:38 +03:00
14.06.2023
This commit is contained in:
30
s1000d/Converter_Source/splashform.h
Normal file
30
s1000d/Converter_Source/splashform.h
Normal 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
|
||||
Reference in New Issue
Block a user