23#include "PlatformAdaptor_Abstract.h"
24#include "qcoreevent.h"
26#include "qquickitem.h"
31class ImFixer :
public QObject {
34 bool eventFilter(QObject *obj, QEvent *event)
override {
35 if (event->type() == QEvent::InputMethodQuery) {
36 auto* imEvt =
static_cast<QInputMethodQueryEvent *
>(event);
37 if (imEvt->queries() == Qt::InputMethodQuery::ImCursorRectangle) {
38 imEvt->setValue(Qt::InputMethodQuery::ImCursorRectangle, QRectF());
42 return QObject::eventFilter(obj, event);
81 static thread_local ImFixer imf;
82 item->installEventFilter(&imf);
98 static Q_INVOKABLE
void saveScreenshot(
const QImage &, QString);