I run Qt Virtual Keyboard example in ubuntu and windows 10 very nice, but on raspbian it runs just on full screen mode and i can not see text edit when typing with virtual keyboard. I want virtual keyboard width fit to window size and show under the text edit. How ?
import sys
import os
from PySide2.QtWidgets import *
os.environ["QT_IM_MODULE"] = "qtvirtualkeyboard"
app = QApplication([])
w = QWidget()
vl = QVBoxLayout(w)
btn = QPushButton()
btn.setText('Start')
vl.addWidget(btn)
tb = QLineEdit()
vl.addWidget(tb)
w.show()
sys.exit(app.exec_())
result on windows 10:
but on raspbian it look like:
how can i solve it? please help
This question has already been answered in How to find the window that contains the QtVirtualKeyboard .
Using the code given in the mentioned post you just need to adjust "y" in:
r.moveTop(keyboard->property("y").toDouble());
you can also work with these attributes:r.setTop(250)
r.setRight(820)
r.setLeft(460)
Best of luck.