Re: How to remove MenuItem from Menu?

2009-10-22 Thread Lars Wirzenius
ke, 2009-10-21 kello 23:11 +0200, Peter Daum kirjoitti: There are several functions to dynamically change/reorder menus, but I couldn't find or figure out a way how to remove a certain item from a Menu. Is this possible? How? (I tried some strange things like calling item-destroy and was

Re: How to remove MenuItem from Menu?

2009-10-22 Thread jcupitt
2009/10/22 Lars Wirzenius l...@liw.fi: * when you create and add the menu item, keep a reference to it * when you remove it, call the function to remove a child from the container; with the Python binding's it's just the .remove(menuitem) method, but in C I guess it's gtk_container_remove.

How to pass a signal to a lower canvas item?

2009-10-22 Thread Michael Welsh Duggan
I have a situation where I have items on a canvas which are being overlayed by another translucent object. When a mouse click is on the translucent object I want to propogate the signal to the item below that. Can anyone suggest a way to implement this? -- Michael Welsh Duggan (m...@md5i.com)

Status of extended layout branch

2009-10-22 Thread Maarten Bosmans
Hi there, On the roadmap [1] the extended layout work is listed as a possibility to go in 2.20. I would really like for that to happen. Especially with the natural size stuff, I would be able to throw out some custom widget code I needed to add in an application of mine to get that behaviour. It

Re: Status of extended layout branch

2009-10-22 Thread Cody Russell
On Thu, 2009-10-22 at 21:19 +0200, Maarten Bosmans wrote: On the roadmap [1] the extended layout work is listed as a possibility to go in 2.20. I would really like for that to happen. Especially with the natural size stuff, I would be able to throw out some custom widget code I needed to add