Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to have graphical interface in a cpp project?
Posted
Comments
buyong 26-Sep-10 4:03am    
what OS you use?

You can use an editor for this (like vc++ and cpp builder) or otherwise would have to implement it using winapi (assuming you are developing software for windows)

Have a look at this link for some extra info:
http://www.functionx.com/win32/Lesson01.ht[^]

Good luck!
 
Share this answer
 
There is no standard way of producing a C++ with a GUI. However there are some good open source cross platform GUI libraries knocking about on the internet. Have a look at:

- wxWidgets[^]
- fltk[^]

fltk is interesting as Bjarne Stroustrup uses it in his book on programing with C++ "Programming -- Principles and Practice Using C++." He's got quite a good description of how to start using it in that book. It's a bit simpler to use than wxWidgets as you're learning C++.

Cheers,

Ash

PS: There are others but I haven't used them in anger so I'm not going to throw a recommendation for their use your way.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900