What is the best way to use PyGame (SDL) within a PyGTK application?
I\'m searching for a method that allows me to have a drawing area in the GTK window and at the s
PyGame works much better when it can manage its own window, or even better, use the whole screen. GTK has flexible enough widgets to allow creation of a drawing area.
This page may help, though, if you want to try it.