Temporary IME position for QML GL widgets

This commit is contained in:
ksuprynowicz 2023-05-27 16:40:48 +02:00
parent 17dc2decf6
commit f783a80f34
2 changed files with 10 additions and 1 deletions

View file

@ -85,6 +85,15 @@ void GLWidget::doneCurrent() {
_context->doneCurrent();
}
QVariant GLWidget::inputMethodQuery(Qt::InputMethodQuery query) const {
if (query == Qt::ImCursorRectangle) {
int x = 50;
int y = 50;
return QRect(x, y, 10, 10);
}
return QWidget::inputMethodQuery(query);
}
bool GLWidget::event(QEvent* event) {
switch (event->type()) {
case QEvent::MouseMove:

View file

@ -35,7 +35,7 @@ public:
void swapBuffers();
gl::Context* context() { return _context; }
QOpenGLContext* qglContext();
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const override;
protected:
virtual bool nativeEvent(const QByteArray &eventType, void *message, long *result) override;