简单的 C++ GUI 作为 XUL 的替代品?
我有一个旧程序,它使用 XUL 和 Mozilla Prism 来显示简单的 GUI。它是用 C++ 编写的,我使用 Visual Studio 2005。这是一个简单的事情,通过互联网以一定的速率发送记录的数据。它有一个滑动条,显示数据所处的时间步长,如果拖动它,它可以让您将时间设置为某个点。它有单选按钮来设置速率乘数(1x、10x、25x)。
不管怎样,看起来他们已经停止使用 Mozilla Prism,我想不再使用 XUL。我找到了有关 Windows 窗体和 wxwidgets 的信息。我不在乎它是否只在 Windows 上运行。获得使用单选按钮和滑块的基本 GUI 的最简单实现方法是什么?
I have an old program that uses XUL and Mozilla Prism to display a simple GUI. It's written in c++ and I use Visual Studio 2005. It's a simple thing which sends recorded data at a certain rate over the internet. It has a slider bar which shows what timestep the data is at, and if you drag it it lets you set the time to a certain point. It has radio buttons to set the rate multiplier (1x, 10x, 25x).
Anyway, it looks like they discontinued Mozilla Prism and I'd like to move away from using XUL. I've found info on windows forms and also wxwidgets. I don't care if it only runs on Windows. What's the simplest to implement way to get a basic GUI working with radio buttons and slider bars?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于简单的工作,嵌入 TCL/TK 是一个相当不错的选择。不过,一旦超出了简单的用途,就需要遵守纪律来保持良好的关注点分离。
For simple work, embedding TCL/TK is a pretty solid choice. Once you get beyond simple uses it takes discipline to keep good separation of concerns, though.