0

I'm new in C++ and looking for a way to create gui just like windowbuilder under eclipse (java). I will appreciate if someone can help me to find tool like windowbuilder. OS : Linux

Thank you

Abs
  • 111
  • 1
  • 2
  • 13
  • Welcome to SO. Questions asking about recommendations for tools are off-topic for this forum. Please try searching online as there are a plethora of resources discussing this topic. – Reticulated Spline May 28 '15 at 23:41

1 Answers1

3

Personally I'm a fan of Qt.

However, it depends entirely on what you want to do. Qt is primarily for cross platform development, so it'll look and act mostly the same between any platform, it also has a large library that may require a bit of a learning curve at first - but the licencing options make it look pretty. Also the documentation is very awesome.

There are of course a lot of other options like: GTKmm (based on GTK+), wxWidgets, FLTK, etc...

Also this is a duplicate question, so look at some of these other answers:

How do I create a GUI for a windows application using C++?

How do I build a GUI in C++?

Community
  • 1
  • 1
Futuza
  • 144
  • 8
  • 1
    Thank you for your reply "Darth Futuza". I'm using Eclipse under Ubuntu and want to create graph to plot may data/values with some buttons and labels etc – Abs May 29 '15 at 15:25
  • QT designer seems to be a good option – Abs Jun 02 '15 at 16:10
  • If you are wanting to plot a graph, afaik Qt doesn't have a built in function for that - however there are plug-ins for Qt that do support it. One example is here: http://www.qcustomplot.com/ – Futuza Jul 24 '15 at 23:28