I recently started learning C++ but the book I have been teaching only teaches how to make console applications. Can anyone point me in the right direction to learn how to start making a simple GUI. For example a text box and display would be great to just start off. I typically use Visual C++ Express but I also have access to xCode on my OS X partition. I'm fairly new to this so it would be great if you could keep it simple. Thanks!
What OS are you programming for? I come from an assembly background and find that the win32 API works wonderfully for this type of thing. But only for windows
I would love for stuff I make to be cross platform but to start I want to use Windows. I tried downloading Allegro but I can't for the life of me figure out how to install it...
Well, WinAPI is good for Generic Forms, only works on Windows OS. QT also is good, but it weights a lot, and it's cross platform (Also works on Linux and Mac).
GTK (GTK++ for C++, GTK is for C) is also good and cross platform but it doesn't "weight" too much.
Then there are many 2D-3D Game Graphics Libraries, like:
2D Mainly:
Allegro, SDL, SMFL
3D Also:
Irrlicht, OGRE, Panda3D
The examples of Allegro seem like it would be really easy to learn. Could you help me install it? I read the documentation but I am really confused on how to install it. Could you run me through the installation please? All I have installed right now is Microsoft Visual Studio Express 2010.