You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-app/main.cpp

21 lines
593 B

#include <QApplication>
#include <QQmlApplicationEngine>
#include "filter.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
filter *eventFilter = new filter;
app.installEventFilter(eventFilter);
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:///main.qml")));
QObject *rootObject = engine.rootObjects().first();
QObject::connect(eventFilter, SIGNAL(ctrlPressed()), rootObject, SLOT(ctrlKeyPressed()));
QObject::connect(eventFilter, SIGNAL(ctrlReleased()), rootObject, SLOT(ctrlKeyReleased()));
return app.exec();
}