Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 curses 窗口中创建 IRC/IM 样式更新。
哪里所有的行都向上移动了一个并且底线被提供的文本替换?
到目前为止,我已经设法在底部获得一个单行输入框,然后在其上方获得一个屏幕高度为 -1 的窗口,但不确定是否插入文本。
我正在使用 window.addstr() 插入文本并删除它上面的行,但这似乎不起作用!
非常感谢您的任何建议/提示,
在尝试了窗口中的大量功能后,我可能自己解决了这个问题
wDebug.move(0,0) wDebug.deleteln() wDebug.addstr(4, 0, msg) wDebug.refresh()
这是正确/最好的方法吗?