更新代码

This commit is contained in:
feiyangqingyun
2024-03-08 10:42:05 +08:00
parent 8b28eb53f7
commit c35ec2fda1
38 changed files with 748 additions and 285 deletions

23
ui/core_helper/appinit.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef APPINIT_H
#define APPINIT_H
#include <QObject>
class AppInit : public QObject
{
Q_OBJECT
public:
static AppInit *Instance();
explicit AppInit(QObject *parent = 0);
protected:
bool eventFilter(QObject *watched, QEvent *event);
private:
static QScopedPointer<AppInit> self;
public slots:
void start();
};
#endif // APPINIT_H