Reputation: 10883
With few years of experience with Java I decided it's time to take the time and learn C++. I just compiled and run my first C++ with eclipse (of course) and would like to take it one step fw - I wish to build a GUI.
Question: what GUIs are available to C++, something that is an open-source and runs on Mac and eclipse.
Upvotes: 5
Views: 23601
Reputation: 22721
I'd recommend Qt which is open source, has an easy-to-use API with GUI designer, and can be used on many operating systems (Windows, Mac, Linux..) and looks native on whatever it's used on.
Upvotes: 3
Reputation: 3416
Some have mentioned Qt, some wxWidgets.
A quick rundown on crossplatform gui toolkits that you could try:
Those are the big ones with the most momentum behind them. There are countless others to also consider.
Upvotes: 9
Reputation: 10937
Use Qt
http://qt.nokia.com/products/
http://qt.nokia.com/products/eclipse-integration/
Upvotes: 4
Reputation: 20646
You might want to take a look at wxWidgets or Qt:
More generally, see here:
I've personally used wxWidgets and found it to be quite good, if you're after a recommendation.
Upvotes: 2