Trac #8563: sugar palette doesn't handle 'table menus'.
The gtk Menu class supports 'table menus', where the menu entries can be laid out in a grid. This is useful for horizontal menus, and for dense menus of icons, and for wrapping the menu when it gets too long, etc. The Menu.attach() method is used to add entries to a menu by row and column: http://www.pygtk.org/docs/pygtk/class-gtkmenu.html#method-gtkmenu--attach However, the callback in _Menu, defined in palette.py, only triggers on do_insert(), and so the signal emission (and subsequent palette._update_separators() call, which places the line underneath the menu title text at top) never occurs when you add entries using attach(). _Menu now overrides attach() and emits the proper signal.
This commit is contained in:
parent
1406e5f8b7
commit
d16334a042
@ -673,6 +673,13 @@ class _Menu(_sugarext.Menu):
|
|||||||
self.emit('item-inserted')
|
self.emit('item-inserted')
|
||||||
self.show()
|
self.show()
|
||||||
|
|
||||||
|
def attach(self, child, left_attach, right_attach,
|
||||||
|
top_attach, bottom_attach):
|
||||||
|
_sugarext.Menu.attach(self, child, left_attach, right_attach,
|
||||||
|
top_attach, bottom_attach)
|
||||||
|
self.emit('item-inserted')
|
||||||
|
self.show()
|
||||||
|
|
||||||
def do_expose_event(self, event):
|
def do_expose_event(self, event):
|
||||||
# Ignore the Menu expose, just do the MenuShell expose to prevent any
|
# Ignore the Menu expose, just do the MenuShell expose to prevent any
|
||||||
# border from being drawn here. A border is drawn by the palette object
|
# border from being drawn here. A border is drawn by the palette object
|
||||||
|
Loading…
Reference in New Issue
Block a user