* src/GrampsBSDDB.py: add cursor routines

* src/GrampsDbBase.py: add cursor routines
* src/GrampsInMemDb.py: add cursor routines
* src/gramps.glade: fix spacing in dialog boxes


svn: r3794
This commit is contained in:
Don Allingham
2004-12-10 01:28:43 +00:00
parent e7122913f1
commit 8179685348
4 changed files with 146 additions and 111 deletions

View File

@ -162,6 +162,18 @@ class GrampsDbBase:
def get_person_cursor(self):
assert False, "Needs to be overridden in the derived class"
def get_family_cursor(self):
assert False, "Needs to be overridden in the derived class"
def get_place_cursor(self):
assert False, "Needs to be overridden in the derived class"
def get_source_cursor(self):
assert False, "Needs to be overridden in the derived class"
def get_media_cursor(self):
assert False, "Needs to be overridden in the derived class"
def load(self,name,callback):
"""
Opens the specified database. The method needs to be overridden