How can any gtk.Widget (eg. a progress bar) be put into a gtk.Menu as one of the menu items?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
Quoting from the PyGTK documentation:
So the answer is: You can't. But:
If you create a MenuItem without a label:
you can add most
gtk.Widget
subclasses as a child toitem
.