I am trying to create a simple aplication in Python 2.7 using PyGTK 2. The main window will contain several widgets (like buttons and a tree view). I know that I can place these widgets in window using options like gtk.Box, gtk.Fixed or gtk.Layout.
Which of these would be better to use? Are there any other possibilities?
Thanks.