Hi everybody.
I am working on a gtk+ application written in python. I obviously use pygtk. My application is about collections of videos. It's a kind of F-spo or picasa, but for video.
As you can see in these two apps, you have a central area where you can see all of your photos with tag thumbnails under.
In my app, I want to implement the same kinf of view. For now I simply use this :
a gtk.Table containing a Vbox, inside the vbox a pixbuf (my video thumbnail) and a hbox, and inside the hbox, as many pixbuf as tags
It's working but it's ugly and It seems like It's not the better solution.
Looking deeply in the docs, I have found two widgets near my neeeds : IconView and TreeView
But IconView can only display one pixbuf per "row" and TreeView don't display as a grid like IconView.
So my question is : Here is a way to display a TreeView like an IconView (in a grid) ? How would you implement the F-spot way of arranging photos and tags under ? Thanks ;)