vote up 9 vote down star
5

This question is extremely basic, and I feel stupid for asking it. How do I create a GUI in C++? All of my C++ programs so far have been CLI, and the only other language I have experience with is PHP, which doesn't support it, which is why I don't know how it works.

By the way, I apologize if GUI is the wrong word here. I'm not sure if it's correct.

Edit: Basically, my question is how. Where do I start? How do I even create the GUI? I've never had any formal programming education, so I have absolutely no idea.

flag

2  
It depends. What sort of operating system are you targeting? Many GUI frameworks are OS-specific. – crosstalk Jul 27 at 1:03
1  
What OS / platform? Or, if you're interested in writing cross-platform GUI apps, please say so - these things make a huge difference for C++... – Shog9 Jul 27 at 1:03
It doesn't really matter. But let's say Windows XP as an example. – waiwai933 Jul 27 at 1:05
PHP DOES support writing GUI programs. There's no reason you can't run PHP programs from the command line, and there are gui libraries like PHP-GTK gtk.php.net and PHP-Qt php-qt.org that can help You also might like to evaluate why you need c++. Writing GUIs in c++ is harder than in many other languages, and you might be able to bundle your c++ code up into libraries callable from Python or C# or PHP or something a little easier to code GUIs for. – kibibu Jul 27 at 2:58
1  
Your question is so broad that I'm thinking you don't just want the names of toolkits or even just some tutorials. You want some books, ones that give you more than APIs or examples, that actually give you concepts. KTC recommends some below, but I would suggest, whatever toolkit you pick to start playing with, make sure to find one you can read about too. – quark Jul 27 at 6:43
show 1 more comment

9 Answers

vote up 4 vote down check

Essentially an operating system's windowing system exposes some api calls that you can performm to do jobs like create a window, or put a button on the window. Basically you get a suite of header files and you can call functions in those imported libraries, just like you'd do with stdlib and printf.

Each operating system comes with it's own gui toolkit, suite of header files, and api calls, and their own way of doing things. There are also cross platform toolkits like gtk, qt, and wx widgets that help you build programs that work anywhere. They achieve this by having the same api calls on each platform, but a different implementation for those api functions that call down to the native OS api calls.

One thing they'll all have in common, which will be different from a CLI program, is something called an event loop. The basic idea there is somewhat complicated, and difficult to compress, but in essense it means that not a hell of a lot is going in in your main class/main function, except:

check the event queue if there's any new events
if there is, dispatch those events to appropriate handlers
when you're done, yield control back to the operating system (usually with some kind of special "sleep" or "select" or "yield" function call)
then the yield function will return when the operating system is done, and you have another go around the loop.

There are plenty of resources about event based programming. If you have any experience with javascript, it's the same basic idea, except that you, the scripter have no access or control over the event loop itself, or what events there are, your only job is to write and register handlers.

edit: Oh also, I forgot to mention that gui programming is incredibly complicated and difficult, in general. If you have the option, it's actually much easier to just integrate an embedded webserver into your program and have an html/web based interface. The one exception that i've encountered is Apple's cocoa+xcode+interface builder + tutorials that make it easily the most approachable environment for people new to gui programming that I've seen.

link|flag
vote up 5 vote down

QT or GTK are the two most common approaches. Explain what you want better and get a better answer.

link|flag
1  
Gtk is not a C++ library (though a variant called Gtk++ exists). Qt is what I prefer. – Dirk Eddelbuettel Jul 27 at 1:10
There are wrappers such as GTKmm. So scragar's proposal is okay. However, I don't like the personal tone of this answer. – vog Jul 27 at 1:22
@ vog - I wrote that answer in a hurry, I was intending to come back to it when I had more time, but I never got around to it. It's kind of been completely overshot by other answers now, so there is no point in me editing it, but I didn't want to sound offensive or anything, it was purely written that way for speed. – scragar Jul 27 at 12:47
If you don't want to sound offensive, you should delete at least the second sentence, even if your answer isn't on top. – vog Jul 29 at 9:48
vote up 19 vote down

There are plenty of free portable GUI libraries, each with its own strengths and weaknesses:

Especially Qt has nice tutorials and tools which help you getting started. Enjoy!

Note, however, that you should avoid platform specific functionality such as the Win32 API or MFC. These libraries tie you unnecessarily on a specific platform without any benefits.

link|flag
Win API is not a library.... – KTC Jul 27 at 1:42
Thanks! I fixed that. – vog Jul 27 at 2:22
Go with Qt, follow the tutorials, become a GUI wizard! – Skilldrick Jul 27 at 8:13
vote up 5 vote down

Since I've already been where you are right now, I think I can "answer" you.

The fact is there is no easy way to make a GUI. GUI's are highly dependent on platform and OS specific code, that's why you should start reading your target platform/OS documentation on window management APIs. The good thing is: there are plenty of libraries that address these limitations and abstract archtecture differences into a single multi-platform API. Those suggested before, GTK and QT, are some of these libraries.

But even these are a little TOO complicated, since lots of new concepts, data types, namespaces and classes are introduced, all at once. For this reason, they use to come bundled with some GUI WYSIWYG editor. They pretty much make programming software with GUIs possible.

To sum it up, there are also non free "environments" for GUI development such as Visual Studio from Microsoft. For those with Delphi experience backgrounds, Visual Studio may be more familiar. There are also free alternatives to the full Visual Studio environment supplied from Microsoft: Visual Studio Express, which is more than enough for starting on GUI development.

link|flag
dependent, not dependable. – patros Jul 27 at 2:32
Visual C++ comes in a "free" express version. See stackoverflow.com/questions/1186017/… – Justicle Jul 27 at 3:03
Both fixed. Thank you. – Spidey Jul 27 at 7:21
vote up 4 vote down

I found a website with a "simple" tutorial: http://www.winprog.org/tutorial/start.html

link|flag
This introduces the Win32 API, a very low level approach to GUI programming that ties you to the Windows platform. I would not recommend that. – vog Jul 27 at 1:18
1  
It's a valid option. I agree that it might not be the best place to start, but it doesn't deserve a down vote. – Emil H Jul 27 at 1:21
I know this is not the ideal solution but it does help to learn how the gui system in Windows works. I've read this tutorial a couple of years ago and now I know what the message loop is and how it works. When working with winforms in .net this knowledge might come in handy. – ZippyV Jul 27 at 1:45
3  
If you are going to write desktop applications there is no substitute for knowing how the OS really renders and interacts with the user. If you just use a library without understanding the fundamentals then you'll never really understand what is going on. Learning a little bit of low level win32 gui programming will be time well spent. – Jim In Texas Jul 27 at 1:53
@Jim In Texas: I agree, but this "bit of low level" should be learned after the basics, so I still find that recommendation inappropriate for beginners. – vog Jul 27 at 2:25
vote up 6 vote down

Given the comment of "say Windows XP as an example", then your options are:

  • Interact directly with the operating system via its API, which for Microsoft Windows is surprise surprise call Windows API. The definitive reference for the WinAPI is Microsoft's MSDN website. A popular online beginner tutorial for that is theForger's Win32 API Programming Tutorial. The classic book for that is Charles Petzold's Programming Windows, 5th Edition.

  • Use a platform (both in terms of OS and compiler) specific library such as MFC, which wraps the WinAPI into C++ class. The reference for that is again MSDN. A classic book for that is Jeff Prosise's Programming Windows with MFC, 2nd Edition. If you are using say CodeGear C++ Builder, then the option here is VCL.

  • Use a cross platform library such as GTK+ (C++ wrapper: gtkmm), Qt, wxWidgets, or FLTK that wrap the specific OS's API. The advantages with these are that in general, your program could been compiled for different OS without having to change the source codes. As have already been mentioned, they each have its own strengths and weaknesses. One consideration when selecting which one to use is its license. For the examples given, GTK+ & gtkmm is license under LGPL, Qt is under various licenses including proprietary option, wxWidgets is under its own wxWindows Licence (with a rename to wxWidgets Licence), and FLTK is under LGPL with exception. For reference, tutorial, and or books, refer to each one's website for details.

link|flag
MFC is evil. I'd prefer to use WIN API if I had no other choice. – the_drow Jul 27 at 8:38
vote up 1 vote down

Its easy to create a .NET Windows GUI in C++.

See the following tutorial from MSDN. You can download everything you need (Visual C++ Express) for free.

Of course you tie yourself to .NET, but if you're just playing around or only need a Windows app you'll be fine (most people still have Windows...for now).

link|flag
vote up 0 vote down

Qt is the best.

link|flag
vote up 4 vote down

OS independent algorithm "Creating GUI applications in C++ in three steps":

  1. Install Qt Creator
    alt text
  2. Create new project (Qt4 Gui Application)
    alt text
  3. Build it.

Congratulations, you've got your first GUI in C++.

Now you're ready to read a lot of documentation to create something more complicate than "Hello world" GUI application.

link|flag

Your Answer

Get an OpenID
or

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