ref: change initialize logic

*complete without change animation
This commit is contained in:
semenov
2025-08-14 15:40:46 +03:00
parent 05e09792d7
commit 0c805708ef
38 changed files with 1047 additions and 1008 deletions

26
bootstrap.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef BOOTSTRAP_H
#define BOOTSTRAP_H
#include "coremanager.h"
#include "widgetmanager.h"
#include <QObject>
class Bootstrap : public QObject
{
Q_OBJECT
public:
explicit Bootstrap(QObject *parent = nullptr);
void initialize();
~Bootstrap(){}
signals:
private:
CoreManager *coreManager;
WidgetManager *widgetManager;
QThread *workerThread;
QThread *animationThread;
};
#endif // BOOTSTRAP_H