I am new to GUI programming, and I haven't found yet what library is best for my purpose (i want to make desktop environment applications, eg. docks, panels, desklets etc.) I have started learning basics of GTK, mainly using PyGtk. Most tutorials i found on line are for GTK+2.0. Recently however, GTK+3 has been released. So i am a bit unsure as to what that means for my learning curve:

  • Should i learn using GTK+3 and forget about GTK+2?
  • Does using one or the other really makes a difference from the point of view of coding?
  • Are there PyGTK bindings for GTK+3 already?
  • Is there any available tutorial for GTK+3?

Since i'm new to this, i'm throwing myself into it blindly, but a bit of guidance may be wiser. So if you have any, you're welcome :)

link|improve this question

1  
Vala [live.gnome.org/Vala] its a new and great language that is specially for GTK development. – lepe Dec 28 '11 at 4:41
feedback

2 Answers

up vote 2 down vote accepted

Definitely go with GTK 3. The 10-minute tutorials on http://developer.gnome.org/ use GTK 3 and are an excellent introduction to programming with GTK in several languages, including Python. In the coming months you will probably see more tutorials appear for GTK 3, and in the meantime, you will still be able to get most tutorials for GTK 2 to work with a minimum of fuss. The basics aren't all that different.

link|improve this answer
"PyGTK-2.24 will be the final major release of PyGTK ..." I'm really waiting and preparing for PyGTK 3.0 to start upgrading my programs... – ilius May 10 '11 at 5:45
1  
@ilius, There will be no PyGTK 3.0. Its replacement, PyGI, is already out, so you can start upgrading! – ptomato May 10 '11 at 7:49
ptomato: vao! Thanks for the info. I'm getting started with it... – ilius May 10 '11 at 14:01
feedback

You might consider trying PyQt4. It tends to work pretty well across different platforms and it is relatively easy to learn.

Check out: http://diotavelli.net/PyQtWiki/Tutorials

If you definitely want to stick with GTK, then I would probably learn the basic concepts PyGtk. It does appear to have some support for GTK+3 (see the release notes in http://www.pygtk.org/).

link|improve this answer
@Kieth: thanks for your reply. You said "if you definitely want to stick with GTK"... there seems to be a subtext :) Do you see any reason why i shouldn't? (I actually started learning some PyQt4, but i was concerned with the fact that GTK is more commonly used on Linux (i use Gnome Desktop)). – Benjamin May 7 '11 at 10:32
1  
Actually, I didn't mean to suggest anything really. Just poor phrasing :) What I meant was that if you had specific reasons for choosing GTK over Qt, then perhaps try PyGTK. I think both are pretty great, and I use mostly Gnome myself. From what I've read it seems like Qt works really well in cross-platform situations, so that is why I originally went with it. That and the very straight-forward documentation have made it very easy to learn and apply for me. – Keith May 9 '11 at 14:33
@Kieth: yep, Qt documentation is great. But there seems to be less public knowledge out there in comparison with Gtk. I still haven't found a solution to some problems with Qt. Thanks for your reply :) – Benjamin May 9 '11 at 20:16
feedback

Your Answer

 
or
required, but never shown

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