vote up 4 vote down star
1

What is the easiest way to make Linux C++ GUI apps? I'm using GNOME and ubuntu 8.10.

flag

6 Answers

vote up 9 vote down check

I personally prefer QT as I prefer working with the signal/slots mechanism and just find it easy to develop applications quickly with it. Some of your other options would be wxWidgets and GTK+.

link|flag
Qt is great, although Qt apps might look a bit out of place in Gnome. – David Mar 15 at 2:07
I think that QGtkStyle, especially under QT4.5, blends in quite well with native gtk apps. – CTT Mar 15 at 2:33
It blends in quite well, however, still has integration problems. For example, standard dialogs like the color chooser are different. And while I really love Qt, unfortunately the color chooser esp. totally sucks compared to the GTK+ one. But they want to change that (use GTK+ choosers). – ypnos Mar 20 at 10:05
I switched to kubuntu so everything works great now. – Lucas McCoy Mar 28 at 2:11
vote up 6 vote down

gtkmm is the c++ binding to gtk, it should work fine

link|flag
I've looked at gtk, but I have no idea how to install it. I ran configure and it did not work. – Lucas McCoy Mar 15 at 1:34
try something like sudo apt-get install gtk-dev – Andy Mar 15 at 2:44
Thanks a lot! I didn't think it would be that easy! – Lucas McCoy Mar 15 at 18:32
Don't forget that Ubuntu and Debian tends to put alot of the 'classic' development infrasture in the build-essential package, so install that too. – Arafangion Mar 16 at 6:21
vote up 4 vote down

Try QT, it will work on Ubuntu, and has a lot of development tools and documentation behind it.

eg a tutorial, or another tutorial or yet another tutorial

link|flag
Good Tutorials! Thanks! – Lucas McCoy Mar 15 at 1:48
vote up 4 vote down

The easiest way is to use an GUI GUI builder.

Glade for GTK.

QT Designer for QT.

wxDesigner for wxWidgets.

Update: I should mention that these output C++ among many others?

link|flag
This can't be up-voted enough times... These are fantastic! – Arafangion Mar 16 at 6:23
vote up 2 vote down

I can personally vouch for the ease of use of qt in general, as well as linux specific development. CHeck it out :)

link|flag
vote up 2 vote down

Just to be clear about the toolkits mentioned so far (GTK+,QT and wxWidgets)

GTK+ is the toolkit used by GNOME

QT is the toolkit used by KDE

wxWidget aims to be an abstraction above those (and others) to be less desktop environment specific.

Another toolkit worh takeing a peek at is EFL the toolkit used by E17, although the glacier development speed of this desktop environment may put you off, I hear nice things about it's design. Note that some components from the Enlightenment project such as imlib2 has been used for years by other projects.

link|flag
"glacier development speed"? I had to unsubscribe from the Enlightenment CVS mailing list because of the traffic - 15+ major commits a day! – greyfade Mar 15 at 18:01
I haven't followd it for a while. But to my knowlege there is still no 1.0 released from this project. – John Nilsson Mar 15 at 19:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.