2007-04-02 Don Allingham <don@gramps-project.org>

* src/DisplayState.py: shorten match message
	* src/GrampsDb/Makefile.am: Added _HelperFunctions.py
	* src/GrampsDb/__init__.py: Added _HelperFunctions.py
	* src/GrampsDb/_HelperFunctions.py: Added support functions



svn: r8349
This commit is contained in:
Don Allingham
2007-04-03 04:05:36 +00:00
parent 5580ad12d3
commit f32d7b6d1a
5 changed files with 140 additions and 6 deletions

View File

@@ -82,7 +82,7 @@ class History(GrampsDb.GrampsDBCallback):
self.index = -1
self.lock = False
def remove(self,person_handle,old_id=None):
def remove(self, person_handle, old_id=None):
"""Removes a person from the history list"""
if old_id:
del_id = old_id
@@ -100,7 +100,7 @@ class History(GrampsDb.GrampsDBCallback):
self.emit('changed',(self.history,))
self.emit('menu-changed',(self.mhistory,))
def push(self,person_handle):
def push(self, person_handle):
self.prune()
if len(self.history) == 0 or person_handle != self.history[-1]:
self.history.append(person_handle)
@@ -111,7 +111,7 @@ class History(GrampsDb.GrampsDBCallback):
self.emit('menu-changed',(self.mhistory,))
self.emit('changed',(self.history,))
def forward(self,step=1):
def forward(self, step=1):
self.index += step
person_handle = self.history[self.index]
if person_handle not in self.mhistory:
@@ -119,7 +119,7 @@ class History(GrampsDb.GrampsDBCallback):
self.emit('menu-changed',(self.mhistory,))
return str(self.history[self.index])
def back(self,step=1):
def back(self, step=1):
self.index -= step
try:
person_handle = self.history[self.index]
@@ -339,7 +339,7 @@ class DisplayState(GrampsDb.GrampsDBCallback):
gobject.timeout_add(5000,self.modify_statusbar,dbstate)
def show_filter_results(self, dbstate, matched, total):
text = _("%d/%d matched") % (matched, total)
text = "%d/%d" % (matched, total)
self.status.pop(1, self.last_bar)
self.status.push(1, text, self.last_bar)