Know a Decent IDE for GUI's?

Aug 13, 2010 at 6:17pm
Basically, I'm used to having all my C++ programs not need GUI's and a console is the most I've normally needed.

But now I want to make a GUI for a program I'm making in c++ and I have no idea how to go about it.

To give you an idea of what I'm used to, Delphi had a system where you could easily make GUI's in a form/design based system.

Is there one for C++?
Aug 13, 2010 at 6:23pm
MS Visual C++ can do some GUI
Aug 13, 2010 at 6:24pm
Well I'm familiar with using MSV C++, I have 2010 express installed on my computer, but unfortunately i know very little about GUI in C++. Is there a similarly easy way to Delphi, or is it all a truckload of code?
Aug 13, 2010 at 7:01pm
I do Win32 Sdk development. Do a search for Forger's Win32 Tutorial and you'll find it easy.

If you absolutely must have drag and drop visual development, then you are probably better off with some language other than C++. However, if its gotta be C++ then look into MFC or .NET CLR or something like that. Like I said though, straight Win32 SDK development like in the Forger's tutorial is what suits me.

In terms of an IDE, for Win32 development it doesn't really matter. I prefer CodeBlocks. However, if you go the class library route, then you go with the designer that goes with the class library, i.e., MFC - Visual Studio, etc.

Its best to realize right off the bat that its a lot of work to learn writing C++ GUI programs.
Last edited on Aug 13, 2010 at 7:03pm
Aug 13, 2010 at 8:42pm
Thanks freddie1, I'm a little familiar with codeblocks and got a nice GUI system with it called wxWidgets.

But I'm having a little problem with getting it to compile.
Aug 18, 2010 at 8:26am
download wxdev which come with wxWidgets
Sep 3, 2010 at 4:19pm
Last I checked Glade had a pretty UI for GTK interfaces.
Sep 3, 2010 at 8:01pm
Qt also has QtCreator which I've heard is excellent.
Topic archived. No new replies allowed.