vote up 0 vote down star

Possible Duplicates:
Good C++ GUI library for Windows
How do I create a GUI for a windows application using C++?

Can I use C++ to create a windows GUI application? (it seems like it's only good for Win32 console commands) thanks

flag

40% accept rate

closed as exact duplicate by ChrisN, CookieOfFortune, Henk Holterman, GMan, Bastien Léonard Jul 18 at 20:31

8 Answers

vote up 0 vote down

Surely you could use C++ to create a windows GUI application. There are a lot of frameworks for that - MFC, Qt, WTL and more. But you should consider using C# and .NET to create GUI. It is sad for me as for C++ developer but it seems that WPF is more appropriate for creating GUI application. It has built-in hardware acceleration, rich tool sets and more.

link|flag
vote up 1 vote down

Yes. You use a different program entry point, WinMain() instead of main(), and you configure your compiler slightly differently: with Visual Studio, you create a "Win32 Application" project instead of a "Win32 Console Application" project; with gcc, you add the -mwindows command line option.

Then, it's just a matter of creating your windows, controls, etc., and managing the Windows message loop. You can use the raw C-compatible Win32 API, or as others have mentioned, there are a number of toolkits designed to make your life easier. Some are object-oriented, some are cross-platform, some are both, and they all have their own quirks.

link|flag
vote up 0 vote down

Sure, you can write straight to the win32 api if you feel like torturing yourself or you can use a framework like Microsoft Foundation Classes (MFC) or a more modern one like QT (recently relicensed under LGPL)

link|flag
vote up 1 vote down

Sure you can. Microsoft has MFC which is a C++ GUI framework for Windows. There's others, e.g. Qt. And nothing stops you from calling the win32 C api from C++.

link|flag
how would i call the win32 C api from C++? Thanks – metashockwave Jul 18 at 19:38
1  
#include <windows.h> And go from there. – GMan Jul 18 at 19:44
The book in win32 mfc is Charles Petzold's Programming Windows: charlespetzold.com/pw5/index.html It starts off pretty basic, explaining the little details that you need to know, and goes right through into all the details you need to know to program GUI's under windows. – Eclipse Jul 18 at 20:55
vote up 0 vote down

Yes, but you can use thirdparty libraries like QT. You also can use the Windows API to develop for Windows.

link|flag
vote up 2 vote down

Another great framework for creating Windows application with C++ is WTL:
http://wtl.sourceforge.net/

link|flag
vote up 1 vote down

Sure, have a look at Qt or MFC.

[Edit]

There's also WxWidgets and gtkmm.

link|flag
vote up 4 vote down

Yes. And there are several C++ class libraries that can help you, like MFC, QT, and wxWidgets. Pretty much all the Windows GUI apps you use were written using C++, either directly to the Win32 API or using a class library.

link|flag

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