GUI C++ Applications on Linux like MFC

Asked by Master

Which Editor I can use for making c++ Projects to make GUI applications as we can make in VC++ Editor(For Making MFC Applications).

MFC Libraries are good to make GUI applications in Windows(contains several pre-defined classes and also wizards/Dialogs and also Drag n Drop support in Editor). What is the alternative to this in Linux(Ubuntu).

I heard about QT IDE (can be integrated with eclipse)

http://www.qtsoftware.com/products/
http://www.qtsoftware.com/downloads

Is it what I am searching ????

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Antonio Litterio
Solved:
Last query:
Last reply:
Revision history for this message
Antonio Litterio (antonio-litterio-gmail) said :
#1

Hi, another alternative is an to use GTK, in particular gtkmm, this is the wrapped library for C++.
Inside gtkmm web-page there are many informations and great guides for learn to use gtkmm.

Revision history for this message
Master (master-4-master) said :
#2

Thanks, Antonio !

I googled out for gtkmm; it is good for making GTK+ based applications and it is good official interface for GTK+ .

I also got this
http://www.gtk.org/screenshots.html

It is platform independent so more useful for me. :)

So now I have two choices QT and GTK+. Other choices/ alternatives are welcomed.

Which Editor I can use with GTK+.

Revision history for this message
Best Antonio Litterio (antonio-litterio-gmail) said :
#3

Another alternative is wxWidget.

With gtk (C or C++) you can directly use anjuta.
It is able to create a gtk or gtk+ project. To design the interface can you use glade.
To install all the necessary, launch command:
sudo apt-get install gnome-devel
sudo apt-get install gnome-dev-doc
sudo apt-get install libgtkmm-2.4-dev
(I think that sufficient)

Revision history for this message
Master (master-4-master) said :
#4

Thanks Antonio Litterio, that solved my question.

Revision history for this message
Master (master-4-master) said :
#5

wxWidget another good one. Thanks Antonio; that was sufficient.