Refactor InputObject(EventFilter and VirtualKeyboard).

This commit is contained in:
sunwen
2022-06-14 14:03:19 +08:00
parent 589262781d
commit 020b40c55d
36 changed files with 783 additions and 598 deletions

17
src/UsctApplication.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef USCTAPPLICATION_H
#define USCTAPPLICATION_H
#include <QApplication>
class UsctApplication : public QApplication
{
Q_OBJECT
public:
UsctApplication(int& argc, char** argv);
~UsctApplication();
private:
bool notify(QObject* aReceiver, QEvent* aEvent);
};
#endif // USCTAPPLICATION_H