Thread: C++ GUI programming books

  1. #1
    Registered User
    Join Date
    Mar 2011
    Posts
    21

    C++ GUI programming books

    Can anyone recommend a useful book that clearly shows methods of creating GUI programs using C++ (things like Notepad++ for example). One that assumes sound knowledge of basic console C++ including classes etc. (which I have) but step by step instructions on form controls and usual GUI components (not the likes of DirectX or OpenGL, that can come later).

    If some have been mentioned on here, just give a link.

    Thanks

  2. #2
    Registered User
    Join Date
    Aug 2003
    Posts
    1,218
    There is no one single book for this. It all depends on what framework you wish to use to program with. I have previously recommended Qt for GUI programming in C++. Other examples are wxWidgets and gtkmm. These all have the benefit of being crossplatform so you can get a gui that works on both windows and linux and they are all targeted for C++. Now the native framework on windows is the Win32 API (consult msdn, platform sdk documentation and theForger's Win32 API Tutorial for more info) but this is C oriented and does not use the features of C++, also more down and dirty.

    Edit: There are alot of resources available for all of these toolkits, tutorials and reference documentation. I would suggest you look around, check out sample code for different apis/frameworks and try them out a little to see which one fits you. You might even find that you don't really need a book and that tutorials/reference documentation is enough.
    Last edited by Shakti; 06-08-2011 at 01:33 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Books (not specifically programming books)
    By DavidP in forum General Discussions
    Replies: 6
    Last Post: 11-05-2009, 07:33 PM
  2. C++ programming books
    By littlelefty7 in forum C++ Programming
    Replies: 3
    Last Post: 02-17-2006, 05:30 PM
  3. Programming books
    By jaylc185 in forum Game Programming
    Replies: 1
    Last Post: 05-20-2005, 11:56 AM
  4. Books on programming C++
    By Pooler in forum C++ Programming
    Replies: 20
    Last Post: 07-15-2003, 12:49 AM
  5. programming books
    By Sekti in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 04-26-2002, 08:38 PM