PDA

View Full Version : [other] C++ GUI Creator



Tclarkie
July 17th, 2009, 10:15 AM
anyone know a good C++ gui creator for ubuntu 9.04 that kinda works like (i hate to refere to MS software) Visual C++ express

ad_267
July 17th, 2009, 11:43 AM
Monodevelop is the closest thing to Visual Studio in my opinion. It's mainly for C# and has a visual GTK# editor. It supports C++ but I don't know if you can use the visual editor for a C++ application.

QtCreator is a good IDE for building Qt applications.

I've only used Glade for creating GTK interfaces and you might find that suits you best. You can create your GUI using Glade, which creates an XML file to describe your interface. Then you write a small bit of C/C++ to load the interface.