2006-05-05 06:09:11 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import RelLib
|
|
|
|
from DdTargets import DdTargets
|
|
|
|
from _EventEmbedList import EventEmbedList
|
|
|
|
|
2006-05-16 03:29:14 +05:30
|
|
|
_std_types = [
|
|
|
|
RelLib.EventType(RelLib.EventType.BIRTH),
|
|
|
|
RelLib.EventType(RelLib.EventType.DEATH),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2006-05-05 06:09:11 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# PersonEventEmbedList
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class PersonEventEmbedList(EventEmbedList):
|
|
|
|
|
|
|
|
def __init__(self, dbstate, uistate, track, obj):
|
|
|
|
self.orig_data = [ data for data in [ obj.get_birth_ref(), \
|
|
|
|
obj.get_death_ref()] + \
|
|
|
|
obj.get_event_ref_list() \
|
|
|
|
if data ]
|
|
|
|
EventEmbedList.__init__(self, dbstate, uistate, track, obj)
|
|
|
|
|
|
|
|
def get_data(self):
|
|
|
|
return self.orig_data
|
|
|
|
|
|
|
|
def default_role(self):
|
|
|
|
return RelLib.EventRoleType(RelLib.EventRoleType.PRIMARY)
|
|
|
|
|
|
|
|
def default_type(self):
|
|
|
|
type_list = []
|
2006-05-16 03:29:14 +05:30
|
|
|
ref_list = [ ref for ref in self.return_info() if ref ]
|
2006-05-05 06:09:11 +05:30
|
|
|
|
|
|
|
event = None
|
|
|
|
for event_ref in ref_list:
|
|
|
|
event = self.dbstate.db.get_event_from_handle(event_ref.ref)
|
2006-05-16 03:29:14 +05:30
|
|
|
type_list.append(event.get_type())
|
2006-05-05 06:09:11 +05:30
|
|
|
|
2006-05-16 03:29:14 +05:30
|
|
|
for etype in _std_types:
|
|
|
|
if etype not in type_list:
|
|
|
|
return RelLib.EventType(etype)
|
2006-05-05 06:09:11 +05:30
|
|
|
return RelLib.EventType(RelLib.EventType.BIRTH)
|
|
|
|
|
|
|
|
def get_ref_editor(self):
|
|
|
|
from Editors import EditEventRef
|
|
|
|
return EditEventRef
|
|
|
|
|
|
|
|
def return_info(self):
|
|
|
|
new_list = []
|
|
|
|
birth_ref = None
|
|
|
|
death_ref = None
|
|
|
|
|
|
|
|
for ref in self.orig_data:
|
|
|
|
event = self.dbstate.db.get_event_from_handle(ref.ref)
|
|
|
|
if birth_ref == None and event.get_type() == RelLib.EventType.BIRTH:
|
|
|
|
birth_ref = ref
|
|
|
|
elif death_ref == None and event.get_type() == RelLib.EventType.DEATH:
|
|
|
|
death_ref = ref
|
|
|
|
else:
|
|
|
|
new_list.append(ref)
|
|
|
|
return (birth_ref, death_ref, new_list)
|