[kupfer] browser: Put result list population actions in one place.
- From: Ulrik Sverdrup <usverdrup src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [kupfer] browser: Put result list population actions in one place.
- Date: Thu, 10 Sep 2009 04:15:04 +0000 (UTC)
commit c47617ca1766ecc5de16211d960f4c50133ab378
Author: Ulrik Sverdrup <ulrik sverdrup gmail com>
Date: Thu Sep 10 04:33:56 2009 +0200
browser: Put result list population actions in one place.
kupfer/browser.py | 25 +++++++++++--------------
1 files changed, 11 insertions(+), 14 deletions(-)
---
diff --git a/kupfer/browser.py b/kupfer/browser.py
index 4bd9e89..e0451b2 100644
--- a/kupfer/browser.py
+++ b/kupfer/browser.py
@@ -937,7 +937,7 @@ class Interface (gobject.GObject):
self.reset_text()
self.current.hide_table()
- def reset_current(self):
+ def reset_current(self, populate=False):
"""
Reset the source or action view
@@ -945,9 +945,8 @@ class Interface (gobject.GObject):
"""
if self.current.get_match_state() is State.Wait:
self.toggle_text_mode(False)
- if self.current is self.action:
- # Reset action view by blanket search
- self.data_controller.search(data.ActionPane)
+ if self.current is self.action or populate:
+ self._populate_search()
else:
self.current.reset()
@@ -959,11 +958,16 @@ class Interface (gobject.GObject):
self.reset_current()
self.reset()
+ def _populate_search(self):
+ """Do a blanket search/empty search to populate current pane"""
+ pane = self._pane_for_widget(self.current)
+ self.data_controller.search(pane, interactive=True)
+
def _escape_key_press(self):
"""Handle escape if first pane is reset, cancel (put away) self. """
if self.current.has_result():
if self.current.is_showing_result():
- self._populate_search()
+ self.reset_current(populate=True)
else:
self.reset_current()
else:
@@ -980,8 +984,7 @@ class Interface (gobject.GObject):
Go up back through browsed sources.
"""
if self.current.is_showing_result():
- self.reset_current()
- self._populate_search()
+ self.reset_current(populate=True)
else:
if self._browse_up():
pass
@@ -1096,7 +1099,7 @@ class Interface (gobject.GObject):
if wid is self.current:
self.toggle_text_mode(False)
if not at_root:
- self._populate_search()
+ self.reset_current(populate=True)
wid.show_table()
def _show_hide_third(self, ctr, mode, ignored):
@@ -1175,12 +1178,6 @@ class Interface (gobject.GObject):
return
self._description_changed()
- def _populate_search(self):
- """Do a blanket search/empty search to populate
- the search view if it is the current view"""
- pane = self._pane_for_widget(self.current)
- self.data_controller.search(pane, interactive=True)
-
def _description_changed(self):
match = self.current.get_current()
name = match and match.get_description() or ""
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]