如何在 Qt 控制台应用程序中处理按键事件?
例如,当您按“Esc”时,应用程序结束。
For example, that when you press "Esc", the application ends.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
例如,当您按“Esc”时,应用程序结束。
For example, that when you press "Esc", the application ends.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这是针对 Linux 的解决方法。使用这些帖子
从标准输入捕获字符,无需等待按下回车键
https://stackoverflow.com/a/912796/2699984
我做了这样的:
ConsoleReader。 h
ConsoleReader.cpp
然后启动新线程来读取密钥:
*更新(添加退出时恢复终端设置)
Here is a workaround for linux. Using these posts
Capture characters from standard input without waiting for enter to be pressed
https://stackoverflow.com/a/912796/2699984
I've made it like this:
ConsoleReader.h
ConsoleReader.cpp
And then just start new thread to read keys:
*UPDATED (added restoring terminal settings on quit)
如果您只需要“退出”,也许以下代码片段会有所帮助(需要 c++11 和 qt5):
If you need only 'quit' maybe the following snippet will help (c++11 and qt5 required):
Qt 不处理控制台事件,它只能从控制台读取以
\n
结尾的行。您需要使用本机 API 或其他库(curses)。
Qt doesn't handle console events, it can just read
\n
-terminated lines from the console.You need to use native APIs or other libraries (curses).