vote up 0 vote down star
1

Possible Duplicates:
Linux GUI programming
How to get executable file of Java programm…

Hello,

I'm starting to develop some GUI applications, but as I'm a Linux user and I'm just starting, I want to start with the best, because when I will be dominating the GUI development I will not want to change the language, but which is the the best language to develop GUI applications under Linux? Thanks.

flag

must be a dupe! – jldupont Oct 26 at 20:41
possible duplicates: stackoverflow.com/questions/1451776/…, stackoverflow.com/questions/1065693/… – Pascal Thivent Oct 26 at 20:42
In this two possible duplicates they discuss about Tools and Book recommendations, here I'm discussing about languages. Thanks – Nathan Campos Oct 26 at 20:44
Did you even browse the answers to these questions? Thanks – Pascal Thivent Oct 26 at 20:49
Matt Briggs nails it below; without much, much more information, it's hard to give advice on this one. What do you want to do? Which window manager? – Dean J Oct 26 at 20:49
show 2 more comments

closed as exact duplicate by Pascal Thivent, Dirk Eddelbuettel, ammoQ, OMG Ponies, ephemient Oct 26 at 20:51

1 Answer

vote up 6 vote down check

It is more about the framework than it is about the language. If you are developing on GNOME, use Gtk. If you are on KDE, use Qt. Both frameworks have bindings to pretty much any language with even a bit of usage, but the "native" language for GTK is C, and the "native" language for Qt is C++.

I would probably go with Python/PyGTK if I wanted to make a linux app. Python because it is such a fantastic application language (and PyGTK is pretty solid), and GTK because GNOME is the ubuntu default, and ubuntu is synonymous with desktop linux nowadays.

As with everything else in linux, there are so many choices that it is hard to give a yes or no answer without a great deal more information.

link|flag
1  
That's what he said, KSchmidt – Vinko Vrsalovic Oct 26 at 20:51

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