File size: 1,365 Bytes
a4cf109 |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
#include <QGuiApplication>
#include <QInputMethodEvent>
#include <QKeyEvent>
#include <QQuickItem>
#include <QQuickWindow>
#include <QWindow>
#include "Dispatcher.h"
namespace QuickKeyboard
{
Dispatcher::Dispatcher(QObject *parent):
QObject(parent),
m_focusObject(0),
m_sendReturnKey(false)
{
}
Dispatcher::~Dispatcher()
{
}
QObject *Dispatcher::focusObject() const
{
return m_focusObject;
}
void Dispatcher::setFocusObject(QObject *focusObject)
{
m_focusObject = focusObject;
}
void Dispatcher::sendSymbol(const QString &symbol)
{
if (!m_focusObject) {
return;
}
QInputMethodEvent ev;
if (symbol == QString("\x7f")) { // backspace
ev.setCommitString("", -1, 1);
}
else if (m_sendReturnKey && symbol == QString("\n")) {
QWindow *window = 0;
QQuickItem *quickItem = qobject_cast<QQuickItem *>(m_focusObject);
if (quickItem) {
window = quickItem->window();
}
if (window) {
QKeyEvent *press = new QKeyEvent(QKeyEvent::KeyPress, Qt::Key_Return, Qt::NoModifier);
QGuiApplication::postEvent(window, press);
QKeyEvent *release = new QKeyEvent(QKeyEvent::KeyRelease, Qt::Key_Return, Qt::NoModifier);
QGuiApplication::postEvent(window, release);
return;
}
else {
ev.setCommitString(symbol);
}
}
else {
ev.setCommitString(symbol);
}
QCoreApplication::sendEvent(m_focusObject, &ev);
}
} /* QuickKeyboard */
|