2004-03-22 10:11:35 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
* src/RelLib.py (Transaction.__len__): Redefine length.
* src/ChooseParents.py, src/EditPerson.py, src/EditSource.py,
src/EventEdit.py, src/FamilyView.py, src/gramps_main.py,
src/ImageSelect.py, src/Marriage.py, src/MediaView.py,
src/PedView.py, src/PeopleModel.py, src/PlaceView.py,
src/SelectChild.py, src/SelectObject.py, src/Sources.py,
src/SourceView.py, src/Utils.py, src/Witness.py,
src/WriteXML.py: Switch from find_* to try_to_find_* methods.
svn: r3193
2004-05-26 08:56:18 +05:30
|
|
|
# Copyright (C) 2000-2004 Donald N. Allingham
|
2004-03-22 10:11:35 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
* src/RelLib.py (Transaction.__len__): Redefine length.
* src/ChooseParents.py, src/EditPerson.py, src/EditSource.py,
src/EventEdit.py, src/FamilyView.py, src/gramps_main.py,
src/ImageSelect.py, src/Marriage.py, src/MediaView.py,
src/PedView.py, src/PeopleModel.py, src/PlaceView.py,
src/SelectChild.py, src/SelectObject.py, src/Sources.py,
src/SourceView.py, src/Utils.py, src/Witness.py,
src/WriteXML.py: Switch from find_* to try_to_find_* methods.
svn: r3193
2004-05-26 08:56:18 +05:30
|
|
|
# $Id$
|
|
|
|
|
2004-04-28 09:36:25 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
2004-08-24 09:18:15 +05:30
|
|
|
import time
|
2004-08-27 03:24:14 +05:30
|
|
|
import locale
|
2004-04-28 09:36:25 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-03-08 03:20:41 +05:30
|
|
|
import gobject
|
|
|
|
import gtk
|
2004-04-28 09:36:25 +05:30
|
|
|
import pango
|
2004-03-08 03:20:41 +05:30
|
|
|
|
2004-04-28 09:36:25 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from RelLib import *
|
2005-01-01 09:57:15 +05:30
|
|
|
import NameDisplay
|
2004-04-28 09:36:25 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# constants
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-06-27 08:40:06 +05:30
|
|
|
|
|
|
|
_ID_COL = 1
|
|
|
|
_GENDER_COL= 2
|
|
|
|
_NAME_COL = 3
|
|
|
|
_DEATH_COL = 6
|
|
|
|
_BIRTH_COL = 7
|
|
|
|
_FAMILY_COL= 9
|
2004-08-24 09:18:15 +05:30
|
|
|
_CHANGE_COL= 21
|
2004-03-23 10:31:19 +05:30
|
|
|
|
2004-04-28 09:36:25 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PeopleModel
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-03-08 03:20:41 +05:30
|
|
|
class PeopleModel(gtk.GenericTreeModel):
|
|
|
|
|
2004-12-23 07:18:00 +05:30
|
|
|
def __init__(self,db,data_filter=None):
|
2004-03-08 03:20:41 +05:30
|
|
|
gtk.GenericTreeModel.__init__(self)
|
2004-03-22 10:11:35 +05:30
|
|
|
|
2004-03-08 03:20:41 +05:30
|
|
|
self.db = db
|
2004-04-28 09:36:25 +05:30
|
|
|
self.visible = {}
|
2004-04-30 08:31:51 +05:30
|
|
|
self.top_visible = {}
|
2004-12-10 05:08:43 +05:30
|
|
|
self.rebuild_data(data_filter)
|
|
|
|
|
2004-12-17 09:46:20 +05:30
|
|
|
def rebuild_data(self,data_filter=None):
|
|
|
|
if data_filter:
|
|
|
|
self.data_filter = data_filter
|
2004-12-10 05:08:43 +05:30
|
|
|
temp_top_path2iter = []
|
|
|
|
temp_iter2path = {}
|
|
|
|
temp_path2iter = {}
|
2004-03-08 03:20:41 +05:30
|
|
|
self.sname_sub = {}
|
|
|
|
|
|
|
|
if not self.db.is_open():
|
|
|
|
return
|
2004-03-30 10:20:24 +05:30
|
|
|
|
2004-12-10 05:08:43 +05:30
|
|
|
if data_filter:
|
2004-12-20 04:25:41 +05:30
|
|
|
handle_list = self.db.get_person_handles(sort_handles=False)
|
|
|
|
keys = data_filter.apply(self.db,handle_list)
|
|
|
|
del handle_list
|
2004-12-10 05:08:43 +05:30
|
|
|
else:
|
|
|
|
keys = self.db.get_person_handles(sort_handles=False)
|
|
|
|
|
|
|
|
for person_handle in keys:
|
|
|
|
person = self.db.get_person_from_handle(person_handle)
|
2004-10-01 00:02:56 +05:30
|
|
|
grp_as = person.get_primary_name().get_group_as()
|
|
|
|
sn = person.get_primary_name().get_surname()
|
|
|
|
if grp_as:
|
|
|
|
surname = grp_as
|
|
|
|
else:
|
|
|
|
surname = self.db.get_name_group_mapping(sn)
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
if self.sname_sub.has_key(surname):
|
2004-07-28 07:59:07 +05:30
|
|
|
self.sname_sub[surname].append(person_handle)
|
2004-03-08 03:20:41 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
self.sname_sub[surname] = [person_handle]
|
2004-12-05 09:45:48 +05:30
|
|
|
|
2004-12-10 05:08:43 +05:30
|
|
|
temp_top_path2iter = self.sname_sub.keys()
|
|
|
|
temp_top_path2iter.sort(locale.strcoll)
|
|
|
|
for name in temp_top_path2iter:
|
2004-12-20 04:25:41 +05:30
|
|
|
|
|
|
|
slist = []
|
|
|
|
for handle in self.sname_sub[name]:
|
|
|
|
n = self.db.person_map.get(handle)[_NAME_COL].get_sort_name()
|
|
|
|
slist.append((n,handle))
|
|
|
|
slist.sort(self.byname)
|
|
|
|
entries = map(lambda x: x[1], slist)
|
2004-10-01 00:02:56 +05:30
|
|
|
val = 0
|
|
|
|
for person_handle in entries:
|
|
|
|
tpl = (name,val)
|
2004-12-10 05:08:43 +05:30
|
|
|
temp_iter2path[person_handle] = tpl
|
|
|
|
temp_path2iter[tpl] = person_handle
|
2004-10-01 00:02:56 +05:30
|
|
|
val += 1
|
2004-12-10 05:08:43 +05:30
|
|
|
|
|
|
|
self.top_path2iter = temp_top_path2iter
|
|
|
|
self.iter2path = temp_iter2path
|
|
|
|
self.path2iter = temp_path2iter
|
|
|
|
|
2004-03-23 10:31:19 +05:30
|
|
|
def byname(self,f,s):
|
2004-12-20 04:25:41 +05:30
|
|
|
return locale.strcoll(f[0],s[0])
|
2004-03-22 10:11:35 +05:30
|
|
|
|
2004-03-08 03:20:41 +05:30
|
|
|
def on_get_flags(self):
|
|
|
|
'''returns the GtkTreeModelFlags for this particular type of model'''
|
2004-04-28 09:36:25 +05:30
|
|
|
return gtk.TREE_MODEL_ITERS_PERSIST
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_get_n_columns(self):
|
2004-08-26 09:33:11 +05:30
|
|
|
return len(COLUMN_DEFS)
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_get_path(self, node):
|
|
|
|
'''returns the tree path (a tuple of indices at the various
|
|
|
|
levels) for a particular node.'''
|
2004-08-20 03:05:16 +05:30
|
|
|
try:
|
|
|
|
return (self.top_path2iter.index(node),)
|
2004-10-01 00:02:56 +05:30
|
|
|
except:
|
2004-03-08 03:20:41 +05:30
|
|
|
(surname,index) = self.iter2path[node]
|
2004-08-20 03:05:16 +05:30
|
|
|
return (self.top_path2iter.index(surname),index)
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_get_column_type(self,index):
|
2004-08-26 09:33:11 +05:30
|
|
|
# return column data-type, from table
|
2004-10-01 00:02:56 +05:30
|
|
|
return COLUMN_DEFS[index][COLUMN_DEF_TYPE]
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_get_iter(self, path):
|
|
|
|
try:
|
2004-04-28 09:36:25 +05:30
|
|
|
if len(path)==1: # Top Level
|
2004-03-08 03:20:41 +05:30
|
|
|
return self.top_path2iter[path[0]]
|
2004-04-28 09:36:25 +05:30
|
|
|
else: # Sublevel
|
2004-03-08 03:20:41 +05:30
|
|
|
surname = self.top_path2iter[path[0]]
|
|
|
|
return self.path2iter[(surname,path[1])]
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def on_get_value(self,node,col):
|
|
|
|
# test for header or data row-type
|
|
|
|
if self.sname_sub.has_key(node):
|
|
|
|
# test for 'header' column being empty (most are)
|
|
|
|
if not COLUMN_DEFS[col][COLUMN_DEF_HEADER]:
|
|
|
|
return u''
|
|
|
|
# return values for 'header' row, calling a function
|
|
|
|
# according to column_defs table
|
|
|
|
val = COLUMN_DEFS[col][COLUMN_DEF_HEADER](self,node)
|
|
|
|
return val
|
2004-03-08 03:20:41 +05:30
|
|
|
else:
|
2004-08-26 09:33:11 +05:30
|
|
|
# return values for 'data' row, calling a function
|
|
|
|
# according to column_defs table
|
2004-08-25 09:07:48 +05:30
|
|
|
try:
|
2004-08-26 09:33:11 +05:30
|
|
|
return COLUMN_DEFS[col][COLUMN_DEF_LIST](self,self.db.person_map[str(node)],node)
|
2004-08-25 09:07:48 +05:30
|
|
|
except:
|
2004-10-12 06:59:39 +05:30
|
|
|
return u'error'
|
2004-03-08 03:20:41 +05:30
|
|
|
|
2004-04-28 09:36:25 +05:30
|
|
|
def reset_visible(self):
|
2004-12-10 05:08:43 +05:30
|
|
|
pass
|
2004-04-28 09:36:25 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def set_visible(self,node,val):
|
2004-12-10 05:08:43 +05:30
|
|
|
pass
|
2004-04-28 09:36:25 +05:30
|
|
|
|
2004-03-08 03:20:41 +05:30
|
|
|
def on_iter_next(self, node):
|
|
|
|
'''returns the next node at this level of the tree'''
|
2004-08-20 03:05:16 +05:30
|
|
|
try:
|
|
|
|
path = self.top_path2iter.index(node)
|
|
|
|
if path+1 == len(self.top_path2iter):
|
|
|
|
return None
|
|
|
|
return self.top_path2iter[path+1]
|
|
|
|
except:
|
2004-03-08 03:20:41 +05:30
|
|
|
(surname,val) = self.iter2path[node]
|
|
|
|
return self.path2iter.get((surname,val+1))
|
|
|
|
|
|
|
|
def on_iter_children(self,node):
|
2004-03-22 10:11:35 +05:30
|
|
|
"""Return the first child of the node"""
|
2004-03-08 03:20:41 +05:30
|
|
|
if node == None:
|
|
|
|
return self.top_path2iter[0]
|
2004-04-28 09:36:25 +05:30
|
|
|
else:
|
|
|
|
return self.path2iter.get((node,0))
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_iter_has_child(self, node):
|
|
|
|
'''returns true if this node has children'''
|
|
|
|
if node == None:
|
2004-08-20 03:05:16 +05:30
|
|
|
return len(self.sname_sub)
|
2004-03-22 10:11:35 +05:30
|
|
|
if self.sname_sub.has_key(node) and len(self.sname_sub[node]) > 0:
|
2004-10-01 00:02:56 +05:30
|
|
|
return True
|
|
|
|
return False
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_iter_n_children(self,node):
|
2004-03-22 10:11:35 +05:30
|
|
|
if node == None:
|
2004-08-20 03:05:16 +05:30
|
|
|
return len(self.sname_sub)
|
|
|
|
try:
|
2004-03-08 03:20:41 +05:30
|
|
|
return len(self.sname_sub[node])
|
2004-08-20 03:05:16 +05:30
|
|
|
except:
|
|
|
|
return 0
|
2004-03-08 03:20:41 +05:30
|
|
|
|
|
|
|
def on_iter_nth_child(self,node,n):
|
2004-08-20 03:05:16 +05:30
|
|
|
try:
|
2004-12-10 05:08:43 +05:30
|
|
|
if node == None:
|
|
|
|
return self.top_path2iter[n]
|
|
|
|
try:
|
|
|
|
return self.path2iter[(node,n)]
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
except IndexError:
|
2004-03-08 03:20:41 +05:30
|
|
|
return None
|
|
|
|
|
|
|
|
def on_iter_parent(self, node):
|
|
|
|
'''returns the parent of this node'''
|
2004-03-22 10:11:35 +05:30
|
|
|
path = self.iter2path.get(node)
|
2004-03-08 03:20:41 +05:30
|
|
|
if path:
|
|
|
|
return path[0]
|
|
|
|
return None
|
2004-03-10 10:45:06 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_sort_name(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
return data[_NAME_COL].get_sort_name()
|
2004-03-23 10:31:19 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_spouse(self,data,node):
|
2004-08-24 09:44:08 +05:30
|
|
|
spouses_names = u""
|
|
|
|
handle = data[0]
|
|
|
|
for family_handle in data[_FAMILY_COL]:
|
|
|
|
family = self.db.get_family_from_handle(family_handle)
|
|
|
|
for spouse_id in [family.get_father_handle(), family.get_mother_handle()]:
|
|
|
|
if not spouse_id:
|
|
|
|
continue
|
|
|
|
if spouse_id == handle:
|
|
|
|
continue
|
|
|
|
spouse = self.db.get_person_from_handle(spouse_id)
|
|
|
|
if len(spouses_names) > 0:
|
|
|
|
spouses_names += ", "
|
2005-01-01 09:57:15 +05:30
|
|
|
spouses_names += NameDisplay.displayer.display(spouse)
|
2004-08-24 09:44:08 +05:30
|
|
|
return spouses_names
|
2004-06-03 08:58:46 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_name(self,data,node):
|
2005-01-01 09:57:15 +05:30
|
|
|
return NameDisplay.displayer.sorted_name(data[_NAME_COL])
|
2004-03-10 10:45:06 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_id(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
return data[_ID_COL]
|
2004-03-10 10:45:06 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_change(self,data,node):
|
2004-08-24 09:18:15 +05:30
|
|
|
return time.asctime(time.localtime(data[_CHANGE_COL]))
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_gender(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
return _GENDER[data[_GENDER_COL]]
|
2004-03-10 10:45:06 +05:30
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_birth_day(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
if data[_BIRTH_COL]:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
return self.db.get_event_from_handle(data[_BIRTH_COL]).get_date()
|
2004-03-10 10:45:06 +05:30
|
|
|
else:
|
|
|
|
return u""
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_death_day(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
if data[_DEATH_COL]:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
return self.db.get_event_from_handle(data[_DEATH_COL]).get_date()
|
2004-03-10 10:45:06 +05:30
|
|
|
else:
|
|
|
|
return u""
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_birth_place(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
if data[_BIRTH_COL]:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
event = self.db.get_event_from_handle(data[_BIRTH_COL])
|
2004-03-22 10:11:35 +05:30
|
|
|
if event:
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
return self.db.get_place_from_handle(place_handle).get_title()
|
2004-03-10 10:45:06 +05:30
|
|
|
return u""
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_death_place(self,data,node):
|
2004-06-27 08:40:06 +05:30
|
|
|
if data[_DEATH_COL]:
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
event = self.db.get_event_from_handle(data[_DEATH_COL])
|
2004-03-22 10:11:35 +05:30
|
|
|
if event:
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
return self.db.get_place_from_handle(place_handle).get_title()
|
2004-03-10 10:45:06 +05:30
|
|
|
return u""
|
|
|
|
|
2004-08-26 09:33:11 +05:30
|
|
|
def column_int_id(self,data,node):
|
|
|
|
return node
|
|
|
|
|
|
|
|
def column_header(self,node):
|
|
|
|
return node
|
|
|
|
|
|
|
|
def column_header_view(self,node):
|
2004-12-10 05:08:43 +05:30
|
|
|
return True
|
2004-08-26 09:33:11 +05:30
|
|
|
|
2004-04-28 09:36:25 +05:30
|
|
|
_GENDER = [ _(u'female'), _(u'male'), _(u'unknown') ]
|
2004-08-26 09:33:11 +05:30
|
|
|
|
|
|
|
# table of column definitions
|
|
|
|
# (unless this is declared after the PeopleModel class, an error is thrown)
|
|
|
|
COLUMN_DEFS = [
|
|
|
|
# data column (method) header column (method) column data type
|
|
|
|
(PeopleModel.column_name, PeopleModel.column_header, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_id, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_gender, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_birth_day, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_birth_place,None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_death_day, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_death_place,None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_spouse, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_change, None, gobject.TYPE_STRING),
|
|
|
|
# the order of the above columns must match PeopleView.column_names
|
|
|
|
|
|
|
|
# these columns are hidden, and must always be last in the list
|
|
|
|
(PeopleModel.column_sort_name, None, gobject.TYPE_STRING),
|
|
|
|
(PeopleModel.column_int_id, None, gobject.TYPE_STRING),
|
|
|
|
]
|
|
|
|
|
|
|
|
# dynamic calculation of column indices, for use by various Views
|
|
|
|
COLUMN_INT_ID = len(COLUMN_DEFS) - 1
|
|
|
|
|
|
|
|
# indices into main column definition table
|
|
|
|
COLUMN_DEF_LIST = 0
|
|
|
|
COLUMN_DEF_HEADER = 1
|
|
|
|
COLUMN_DEF_TYPE = 2
|