tags:

views:

876

answers:

10
+2  Q: 

C++ UI resources.

Now that I know C++ i want to get into desktop application that have a UI instead of Command Prompt stuff, where should I start, and what are some good online resources?

+1  A: 

I use Codegear's C++ Builder. It's C++ language support is not 100% but it more than makes up for it by having a great two-way RAD IDE and the ability to use a huge library of existing Delphi components.

Roddy
+5  A: 

wxWidgets is a cross platform GUI library for C++ (and other languages). The main site should have enough pointers to resources to get going.

You might also want to check out this question/answer here on stack overflow if you are specifically thinking of Windows

Steve Beedie
A: 

On Linux and maybe Windows, you can use Gtk+ with Glade. Gtk+ is the GUI toolkit. Glade is a GUI drag and drop GUI editor. If you came from Windows or Java and thought GUI programming is hard, this stuff is easy.

Peter Stuifzand
A: 

How about QT? Its cross-platform and its is used in a lot of commercial softwares.

A: 

If marketability is a concern, then C++/CLI with WinForms and WPF which really translates to "just learn WinForms and WPF, regardless of what specific language you use".

CodeProject has a ton of WinForms/WPF samples/tutorials to get you started.

James D
A: 

The Fox GUI Toolkit

Really decent tried-and-true toolkit with a very nice event system. I've used the Ruby port, and my Windows apps had a very native look and feel.

Brian Warshaw
+2  A: 

If cross platform support is important then I would second the suggestion to look at Qt. It supports Windows, Linux and the Mac. For free software it is free (there is a GPL version on Unix but not for Windows) but for comercial software it is not particulary cheap. There are now several books on Programming with Qt.

It does come with a large number of extra libraries for networking, parsing XML etc. It also has integration with Visual Studio on Windows.

One downside with Qt is that there are not as many add on libraries as with some other GUI frameworks. Ot will depend on the type of applications that you wish to write whether this is important to you or not.

David Dibben
A: 

It might lack some features, but FLTK is an incredibly simple cross-platform GUI library.

Landon
A: 

If you are using Windows the traditional place to start is Petzold

There is a nice simple framework here which will help you on the way without abstracting too much away.

Tony Edgecombe
A: 

Get Visual Studio Express, and start with a MFC "Dialog Based" application. All the window toolkits mentioned are good, but MFC will look the best on a resume!

Nick
MFC on a resume? really? it is quite dated
Tim
I thought they disabled MFC in express as well...
Tim