DrawingArea is not a Container, then can not have any child(like
Button). But you can put both them an gtk.Fixed. First put the
DrawingArea and then put the Button(or any widget that will be on
top).
fixed = gtk.Fixed()
fixed.put(drawing, 0, 0)
fixed.put(button, 10, 10)## x, y

On 6/26/09, Amit Sethi <amit.pureene...@gmail.com> wrote:
> Hi , I want to overlay a gtk button on gtk drawing area being used to play
> video using gstreamer . Are their tutorials with examples for the
> same.Please guide me to them .
>
> --
> A-M-I-T S|S
>
_______________________________________________
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/

Reply via email to