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
The Sugar project has several Activities built with PyGTK and PyGame.
They wrote a support lib to achieve this, called Sugargame. You should be able to modify it for regular PyGTK apps instead of Sugar.
Here's a chapter in Sugar's development book about how to use it.
The lib allows for communicating events between GTK and PyGame.
Enjoy!