检测 C++ 中的箭头键输入在unix平台上使用curses在调用系统命令后不起作用

发布于 2024-12-06 22:19:25 字数 256 浏览 0 评论 0原文

我有一个应用程序,用户在其中输入数据并且需要能够使用箭头键在屏幕上移动。现在我已经使用了curses库,但是在调用系统命令后检测箭头时遇到问题,

system("more filename);

我已经能够在调用此命令之前检测到它们。但之后,即使尝试再次使用键盘打开

keypad(scrn, TRUE);

它也不起作用。

有什么建议吗?谢谢你:)

I have an application in which the user inputs data and needs to be able to move around the screen using the arrow keys. now I've used the curses library but I am having a problem detecting the arrows after calling a system command which is

system("more filename);

I've been able to detect them before calling this command. but afterwards, even after trying to turn the keypad on again using

keypad(scrn, TRUE);

it's not working.

any suggestions? thank you:)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟花易冷人易散 2024-12-13 22:19:25

尝试这里的建议:http://tldp.org/HOWTO/NCURSES-编程-HOWTO/misc.html#TEMPLEAVE

有时您可能想暂时返回到煮熟模式(正常行缓冲模式)。在这种情况下,您首先需要调用 def_prog_mode() 来保存 tty 模式,然后调用 endwin() 来结束 Curses 模式。这将使您处于原始的 tty 模式。完成后要返回curses,请调用reset_prog_mode()。该函数将 tty 返回到由 def_prog_mode() 存储的状态。然后执行refresh(),你就回到了curses模式。

Try the advice here: http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/misc.html#TEMPLEAVE

Some times you may want to get back to cooked mode (normal line buffering mode) temporarily. In such a case you will first need to save the tty modes with a call to def_prog_mode() and then call endwin() to end the curses mode. This will leave you in the original tty mode. To get back to curses once you are done, call reset_prog_mode() . This function returns the tty to the state stored by def_prog_mode(). Then do refresh(), and you are back to the curses mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文