首次提交

This commit is contained in:
2026-06-16 13:38:08 +08:00
commit ec32ae543d
192 changed files with 13162 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#include "Application.h"
#include <QKeyEvent>
#include <QDebug>
#include "./BackEnd/MainWidget.h"
#include "BaseWidget.h"
#include "menu/BaseWidgetMenu.h"
Application::Application(int &argc, char **argv, int flags) : QApplication(argc,argv,flags) {
}
Application::~Application() = default;
bool Application::notify(QObject *object, QEvent *event) {
if(
true
&&event->type() != QEvent::Timer
&&event->type() != QEvent::ZeroTimerEvent
&&event->type() != QEvent::FocusIn
&&event->type() != QEvent::Wheel
&&event->type() != QEvent::KeyPress
) {
//qDebug() << object << event->type() << event;
}
return QApplication::notify(object, event);
}