forked from openscad/openscad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventFilter.h
35 lines (32 loc) · 963 Bytes
/
EventFilter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include <QObject>
#include <QFileOpenEvent>
#include "OpenSCADApp.h"
#include "launchingscreen.h"
class SCADEventFilter : public QObject
{
Q_OBJECT;
public:
SCADEventFilter(QObject *parent) : QObject(parent) {}
protected:
bool eventFilter(QObject *obj, QEvent *event) override {
// Handle Apple event for opening files, only available on OS X
if (event->type() == QEvent::FileOpen) {
QFileOpenEvent *foe = static_cast<QFileOpenEvent *>(event);
const QString &filename = foe->file();
if (LaunchingScreen *ls = LaunchingScreen::getDialog()) {
// We need to invoke the method since, apparently, we receive
// this event in another thread.
QMetaObject::invokeMethod(ls, "openFile", Qt::QueuedConnection,
Q_ARG(QString, filename));
}
else {
scadApp->requestOpenFile(filename);
}
return true;
} else {
// standard event processing
return QObject::eventFilter(obj, event);
}
}
};