Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Alessandro Dentella
Hi. Sorry for reposting. But it seems strange to me that such an ordinary feature of Actions/MenuItem tooltip is not known by anybody. Most of the application I see do have tooltips on menuItems: I can't believe I should copy tooltips from action to MenuItem by hand... I've searched in the docs

Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Alessandro Dentella
here is the code that shows what I mean. The action 'Test' has a tooltip in the ToolButton and not in the meny entry: thanks in advance for any possible hint/explanation import gtk GENERAL_UI = ''' menubar name=Main menu action=File menuitem action=Test/ /menu /menubar

Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Timo
On 08-09-10 09:51, Alessandro Dentella wrote: here is the code that shows what I mean. The action 'Test' has a tooltip in the ToolButton and not in the meny entry: thanks in advance for any possible hint/explanation Connect the uimanager to the connect-proxy signal, there you can set

Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Alessandro Dentella
On Wed, Sep 08, 2010 at 12:12:06PM +0200, Timo wrote: On 08-09-10 09:51, Alessandro Dentella wrote: here is the code that shows what I mean. The action 'Test' has a tooltip in the ToolButton and not in the meny entry: thanks in advance for any possible hint/explanation Connect the uimanager

Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Timo
On 08-09-10 15:39, Alessandro Dentella wrote: On Wed, Sep 08, 2010 at 12:12:06PM +0200, Timo wrote: On 08-09-10 09:51, Alessandro Dentella wrote: here is the code that shows what I mean. The action 'Test' has a tooltip in the ToolButton and not in the meny entry: thanks in advance

Re: [pygtk] Tooltips on MenuItem and ui_manager

2010-09-08 Thread Alessandro Dentella
On Wed, Sep 08, 2010 at 06:54:46PM +0200, Timo wrote: On 08-09-10 15:39, Alessandro Dentella wrote: On Wed, Sep 08, 2010 at 12:12:06PM +0200, Timo wrote: On 08-09-10 09:51, Alessandro Dentella wrote: here is the code that shows what I mean. The action 'Test' has a tooltip in the ToolButton

[pygtk] Tooltips on MenuItem and ui_manager

2010-09-02 Thread Alessandro Dentella
Hi again, I use UIManager() + group_action.add_actions() to create MenuItems and ToolItems. I set tooltips as required by actiongroup.add_actions( 5^ field). These tooltip show correctly for toolitems but they won't for menu entries. Is it the desired behaviour? What can I do to have tooltips