[pygobject/pygobject-2-28] [gi-demos] fix up search-entry to reflect annotations fixed in Gtk+ master
- From: John Palmieri <johnp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pygobject/pygobject-2-28] [gi-demos] fix up search-entry to reflect annotations fixed in Gtk+ master
- Date: Thu, 3 Mar 2011 23:47:44 +0000 (UTC)
commit c1c491c8cb4684a10404fee59b2706bec6b8606b
Author: John (J5) Palmieri <johnp redhat com>
Date: Thu Mar 3 16:10:17 2011 -0500
[gi-demos] fix up search-entry to reflect annotations fixed in Gtk+ master
demos/gtk-demo/demos/Entry/search_entry.py | 23 +++++++++--------------
1 files changed, 9 insertions(+), 14 deletions(-)
---
diff --git a/demos/gtk-demo/demos/Entry/search_entry.py b/demos/gtk-demo/demos/Entry/search_entry.py
index 3974ac4..bf290f4 100644
--- a/demos/gtk-demo/demos/Entry/search_entry.py
+++ b/demos/gtk-demo/demos/Entry/search_entry.py
@@ -89,22 +89,19 @@ class SearchboxApp:
# Create the menu
menu = self.create_search_menu(entry)
entry.connect('icon-press', self.icon_press_cb, menu)
- # FIXME:
- # menu.attach_to_widget(entry, None) - missing annotation prevents
- # using this method so do manually for now
- entry.connect('button-press-event', self.popup_menu, menu)
- # add accessible alternatives for icon functionality */
+ # FIXME: this should take None for the detach callback
+ # but our callback implementation does not allow
+ # it yet, so we pass in a noop callback
+ menu.attach_to_widget(entry, self.detach)
+
+ # add accessible alternatives for icon functionality
entry.connect('populate-popup', self.entry_populate_popup)
self.window.show_all()
- def popup_menu(self, entry, event, menu):
- if event.button != 3:
- return False
-
- menu.popup(None, None, None, None,
- event.button, event.time)
+ def detach(self, *args):
+ pass
def show_find_button(self):
self.notebook.set_current_page(0)
@@ -204,11 +201,9 @@ class SearchboxApp:
def icon_press_cb(self, entry, position, event, menu):
- # FIXME: sending in a GdkEvent when it should send in GdkEventButton
- # requires a Gtk annotation
if position == Gtk.EntryIconPosition.PRIMARY:
menu.popup(None, None, None, None,
- event.button.button, event.button.time)
+ event.button, event.time)
else:
self.clear_entry(entry)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]