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

2010-02-03 Thread Freddie Unpenstein
> On Fri, 2010-01-29 at 00:27 -0500, Freddie Unpenstein wrote: >> One thing did occur to me, though. It's kind of annoying when you click >> a check menu item, and the menu doesn't go away. And having some >> that do, and some that don't, would probably drive me balmy. > > My scenario, however, is

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

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 imple

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

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

2010-01-28 Thread David Salisbury
Hi 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've looked at using the activate callback to show th