Qt sending keyPressEvent

懵懂的女人 提交于 2019-12-07 15:44:32

问题


I want to append chars to QLineEdit by sending KeyEvent. I'm using code like this:

ui.myEdit->setFocus();
for(size_t i = 0; i < 10; ++i) {
   QKeyEvent keyPressed(QKeyEvent::KeyPress, 'a', Qt::NoModifier);
   QWidget::keyPressEvent(&keyPressed); // or
   //QApplication::sendEvent(QApplication::focusWidget(), &keyPressed);
}

Why there is no change in myEdit?


回答1:


You can change the change the text of QLineEdit simply by :

ui->myEdit->setText(ui->myEdit->text().append("a"));

But if you really want to change it by sending QKeyEvent you can try this :

QKeyEvent * eve1 = new QKeyEvent (QEvent::KeyPress,Qt::Key_A,Qt::NoModifier,"a");
QKeyEvent * eve2 = new QKeyEvent (QEvent::KeyRelease,Qt::Key_A,Qt::NoModifier,"a");

qApp->postEvent((QObject*)ui->myEdit,(QEvent *)eve1);
qApp->postEvent((QObject*)ui->myEdit,(QEvent *)eve2);



回答2:


Your approach is not wise.

  1. Setting the focus yourself may annoy more than one user which loose focus from one UI element for the other.
  2. By calling keyPressEvent directly you are skipping many layers of processing from the framework. Only misbehavior await down this path.

To reply to

I want to append chars to QLineEdit

You can obtain the line edit text, modify at your will and set it back.

QString currentText = ui.myEdit->text();
QString toappend    = "aaaaaaaaaa";
QString nextText    = currentText + toappend;
ui.myEdit->setText(nextText);

or one line

ui.myEdit->setText(ui.myEdit->text()+mystring);



回答3:


Synthesizing a key press event to append characters to a line edit is asking for endless trouble. You'd need to retain the state of the control to ensure that you are in fact appending characters. If the cursor is not at the end, you'll be inserting or prepending characters. If any modifiers are active, you may cause the widget to act as if, say, a clipboard shortcut was activated. Say if you "append" an X while Ctrl/⌘ is held down, you'll cause any selected text to disappear from the line edit.

In other words: if you want to append something to a textedit, simply append it, don't synthesize keystrokes.

lineEdit->setText(lineEdit->text() + "appended");

That's it. To do it properly via appending keystrokes requires about a page of code, and even then it can't but rely on Qt's implementation details.



来源:https://stackoverflow.com/questions/24322602/qt-sending-keypressevent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!