vote up 2 vote down star
1

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?

flag

10 Answers

vote up 5 vote down check

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

link|flag
vote up 0 vote down

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!

link|flag
MFC on a resume? really? it is quite dated – tim Feb 19 at 4:26
I thought they disabled MFC in express as well... – tim Feb 19 at 4:27
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.