ref: add entry widget and list of changes

This commit is contained in:
semenov
2024-12-12 12:56:20 +03:00
parent 7f4205ea09
commit 31e42a97e4
34 changed files with 2634 additions and 785 deletions

24
updatewidget.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef UPDATEWIDGET_H
#define UPDATEWIDGET_H
#include <QWidget>
namespace Ui {
class UpdateWidget;
}
class UpdateWidget : public QWidget
{
Q_OBJECT
public:
explicit UpdateWidget(QWidget *parent = nullptr);
void initialize();
void showWithFill();
~UpdateWidget();
private:
Ui::UpdateWidget *ui;
};
#endif // UPDATEWIDGET_H