Re: Making a Python/GTK CheckMenuItem, when clicked, not close the menu

2010-02-02 Thread David Salisbury
On Fri, 2010-01-29 at 00:27 -0500, Freddie Unpenstein wrote: Using Python and PyGTK I've got a GtkMenu with various GtkCheckMenuItems in it. When the user clicks one of the checkboxes the menu closes. I'd like for the user to be able to check a series of checkboxes without the menu closing

Re : Making a Python/GTK CheckMenuItem, when clicked, not close the menu

2010-01-29 Thread Nicolas Soubeiran
Hi, I'm not really aware of PyGTK. But I have a suggestion, it is possible when you use the GTK+ (C API), I do not know if it is possible in PyGTK. If the menu widget does not work as you expect, use a custom GtkWindow with type GTK_WINDOW_POPUP (as say in GTK doc GTK_WINDOW_POPUP is used to

Re: Making a Python/GTK CheckMenuItem, when clicked, not close the menu

2010-01-28 Thread Freddie Unpenstein
Using Python and PyGTK I've got a GtkMenu with various GtkCheckMenuItems in it. When the user clicks one of the checkboxes the menu closes. I'd like for the user to be able to check a series of checkboxes without the menu closing each time. I looked into this myself a while back, and gave up.