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?
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.