如何实现跨平台的类似cscope的基于文本的用户界面?
我希望我的 C++ 程序:
- 允许像 cscope 中那样选择选项;那是使用选项卡,并循环迭代选项。
- 此外,选项不应滚动,就像 cscope 的情况一样。
我有什么想法可以实现这个吗?我希望我的实现是跨平台的,即支持 Windows、Linux 和 Mac 环境。
I want my C++ program to:
- Allow the selection of choices as in cscope; that is using tabs, and circularly iterating over the choices.
- Further, the choices should not scroll, as is the case with cscope.
Any ideas how I can implement this? I would like my implementation to be cross-platform i.e. supports Windows, Linux and Mac environments.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你想要ncurses。查看 Linux 工具
aptitude
看看它是什么样子的。I think you want ncurses. Have a look at the Linux tool
aptitude
to see what it can look like.