Hello. Could anybody please tell me which is the best software to do GUI programming in Linux and some books for it?
|
2
|
|||||||||
|
|
|
anjuta is a gr8 IDE for c++/gtk |
||
|
|
|
|
As mentioned at @Vereb answer, the list is missing gtk (www.gtk.org). On http://www.gtk.org/documentation.html you see a lot of tutorials. The toolkit has bindings for many different languages (http://www.gtk.org/language-bindings.html) and most of those bindings have translated the basic tutorial to that language. I really like that toolkit - I tried QT before, but back then, it lacked a good ruby-binding. Glade (http://glade.gnome.org/) helps in rapidly designing a GUI. Glade helps you create .xml-files with the GUI-design. These glade-files don't need to be preprocessed to be used (is this still necessary for QT?) so adjustments are immediately visible. When you would use the Ruby-binding, Rugui (http://rugui.org/) is a Ruby on Rails like framework that helps you to develop bigger GUI-programs. Recently, it supports QT too, though. |
||
|
|
|
|
Instead of paraphrasing the author of the article, I warmly recommend to read Linux GUI Application Development for Windows Programmers. Even if this article is a bit old now, most of the tools and languages it covers are still there today and the expressed opinions are not that much outdated. Tools are evaluated against some interesting criteria (yours might of course be different) and you'll find the results in this comparison matrix. I'm not saying you should take the content of this article "as is" but it's a very good starting point and you could use a similar approach or methodology to find a toolkit/language/tool that'll suit your needs. |
||
|
|
|
|
I also vote for Qt.
But there are other possibilities for linux gui programming:
And I guess many more. |
|||
|
|
I second the suggestion to try Qt. You might also want to see these other Stack Overflow questions
|
||
|
|
|
|
Take a look at Qt (www.trolltech.com). In my opinion the best method to create a GUI (especially Qt supports the "Signals and Slots"-princip). You can use it in C++, Java and Python and it's also platform independent (if you decide to port your program also to Windows or MacOS X). The documentation is really good, there are many many tutorials, so you even don't need any book. |
||
|
|
