虚拟键盘或屏幕上的键盘QtWidgets应用程序?(Virtual keyboard or onsc

2019-10-28 13:39发布

我要去部署qtvirtualkeyboard在我的基于工具的应用,像这样:

#include <QtWidgets>

int main(int argc, char *argv[]) {
    qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard"));
    QApplication app(argc, argv);
    QMainWindow window;
    QLineEdit input(&window);
    input.move(250, 250);
    window.show();
    return app.exec();
}

但唯一的问题是,虚拟键盘输入面板隐藏了底层的部件和覆盖它们!

我应该如何实现这一目标?

针对用户控件的应用程序的任何文件或解决方案?

Answer 1:

你只需要添加的main.cpp这一行

qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard"));

并将努力在Qtwidgets虚拟键盘))



Answer 2:

最后得到了解决!

你只需要调用QGuiApplication::inputMethod()来获取应用程序范围内的Qt输入法,然后调用QInputMethod::keyboardRectangle()QInputMethod::isVisible()获得输入法的属性然后保持基于你的部件位置的计算和键盘协调,这里是一个完整的工作示例分享到:

lineedit.h

class LineEdit :public QLineEdit {
    Q_OBJECT

public:
    LineEdit(QWidget *parent = nullptr);
    LineEdit(const QString&, QWidget *parent = nullptr);

protected:
    bool event(QEvent*) override;

private:
    bool _moved = false;
    int _lastDiff = 0;
};

lineedit.cpp

LineEdit::LineEdit(QWidget *parent) :QLineEdit(parent) {
    setAttribute(Qt::WA_InputMethodEnabled, true);
    setInputMethodHints(inputMethodHints() | Qt::InputMethodHint::ImhDigitsOnly);
}

LineEdit::LineEdit(const QString& txt, QWidget *parent) : QLineEdit(txt, parent) {
    setAttribute(Qt::WA_InputMethodEnabled, true);
    setInputMethodHints(inputMethodHints() | Qt::InputMethodHint::ImhDigitsOnly);
}

bool LineEdit::event(QEvent* e) {
    const auto keyboard_rect = QGuiApplication::inputMethod()->keyboardRectangle();
    const auto keyboard_visible = QGuiApplication::inputMethod()->isVisible();
    const auto global_y = QWidget::mapToGlobal(rect().topLeft()).y() + height();
    const auto k_global_y = keyboard_rect.topLeft().y();
    const auto diff = k_global_y - global_y;
    const auto need_to_move = diff < 0;

    /* move main widget */
    if (keyboard_visible && !_moved && need_to_move) {
        _moved = true;
        _lastDiff = diff;
        const auto g = parentWidget()->frameGeometry();
        parentWidget()->move(g.x(), g.y() - qAbs(_lastDiff));
    }
    /* roll back */
    if (!keyboard_visible && _moved) {
        _moved = false;
        const auto g = parentWidget()->frameGeometry();
        parentWidget()->move(g.x(), g.y() + qAbs(_lastDiff));
    }
    return QLineEdit::event(e);
}

main.cpp

#include <QtWidgets>

#define W 1024
#define H 768

int main(int argc, char *argv[]) {
    qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard"));
    QApplication app(argc, argv);

    QMainWindow window(nullptr, Qt::FramelessWindowHint);

    LineEdit lineedit1(&window);
    lineedit1.move(100, 450);

    LineEdit lineedit2(&window);
    lineedit2.move(100, 100);

    window.resize(W, H);
    window.show();
    return app.exec();
}

结果:



文章来源: Virtual keyboard or onscreen keyboard for QtWidgets applications?