2003-08-15 04:03:30 +05:30
|
|
|
|
# -*- coding: utf-8 -*-
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#
|
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
|
#
|
2004-02-15 12:51:29 +05:30
|
|
|
|
# Copyright (C) 2000-2004 Donald N. Allingham
|
2002-10-20 19:55:16 +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
|
|
|
|
|
#
|
|
|
|
|
|
2003-11-18 09:56:06 +05:30
|
|
|
|
# $Id$
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# internationalization
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
2003-08-17 07:44:33 +05:30
|
|
|
|
from gettext import gettext as _
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# GTK/Gnome modules
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
import gtk.glade
|
2003-11-18 09:56:06 +05:30
|
|
|
|
import gnome
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# gramps modules
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
2003-01-10 10:51:32 +05:30
|
|
|
|
import RelLib
|
2002-10-20 19:55:16 +05:30
|
|
|
|
import const
|
|
|
|
|
import Utils
|
2002-11-03 02:49:58 +05:30
|
|
|
|
import ListModel
|
2003-05-18 09:48:12 +05:30
|
|
|
|
import GrampsCfg
|
|
|
|
|
from RelLib import Person
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# SelectChild
|
|
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
class SelectChild:
|
|
|
|
|
|
2002-11-15 09:19:39 +05:30
|
|
|
|
def __init__(self,db,family,person,redraw,add_person):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.db = db
|
|
|
|
|
self.person = person
|
|
|
|
|
self.family = family
|
|
|
|
|
self.redraw = redraw
|
2002-11-15 09:19:39 +05:30
|
|
|
|
self.add_person = add_person
|
2003-08-17 07:44:33 +05:30
|
|
|
|
self.xml = gtk.glade.XML(const.gladeFile,"select_child","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if person:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.default_name = person.get_primary_name().get_surname().upper()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
|
|
|
|
self.default_name = ""
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.xml.signal_autoconnect({
|
|
|
|
|
"on_save_child_clicked" : self.on_save_child_clicked,
|
2003-11-18 09:56:06 +05:30
|
|
|
|
"on_child_help_clicked" : self.on_child_help_clicked,
|
2002-10-20 19:55:16 +05:30
|
|
|
|
"on_show_toggled" : self.on_show_toggled,
|
2003-03-05 11:31:31 +05:30
|
|
|
|
"destroy_passed_object" : self.close
|
2002-10-20 19:55:16 +05:30
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
self.select_child_list = {}
|
2003-03-05 11:31:31 +05:30
|
|
|
|
self.top = self.xml.get_widget("select_child")
|
|
|
|
|
title_label = self.xml.get_widget('title')
|
2003-03-06 11:42:51 +05:30
|
|
|
|
|
2003-06-15 09:43:16 +05:30
|
|
|
|
Utils.set_titles(self.top,title_label,_('Add Child to Family'))
|
2003-03-05 11:31:31 +05:30
|
|
|
|
|
2002-11-03 02:49:58 +05:30
|
|
|
|
self.add_child = self.xml.get_widget("childlist")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
if (self.family):
|
2004-02-14 11:10:30 +05:30
|
|
|
|
father = self.family.get_father_id()
|
|
|
|
|
mother = self.family.get_mother_id()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
if father != None:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = father.get_primary_name().get_name()
|
2003-06-17 09:45:58 +05:30
|
|
|
|
label = _("Relationship to %(father)s") % {
|
|
|
|
|
'father' : fname
|
|
|
|
|
}
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.xml.get_widget("flabel").set_text(label)
|
|
|
|
|
|
|
|
|
|
if mother != None:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
mname = mother.get_primary_name().get_name()
|
2003-06-17 09:45:58 +05:30
|
|
|
|
label = _("Relationship to %(mother)s") % {
|
|
|
|
|
'mother' : mname
|
|
|
|
|
}
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.xml.get_widget("mlabel").set_text(label)
|
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = self.person.get_primary_name().get_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
label = _("Relationship to %s") % fname
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
if self.person.get_gender() == RelLib.Person.male:
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.xml.get_widget("flabel").set_text(label)
|
|
|
|
|
self.xml.get_widget("mrel_combo").set_sensitive(0)
|
|
|
|
|
else:
|
|
|
|
|
self.xml.get_widget("mlabel").set_text(label)
|
|
|
|
|
self.xml.get_widget("frel_combo").set_sensitive(0)
|
|
|
|
|
|
|
|
|
|
self.mrel = self.xml.get_widget("mrel")
|
|
|
|
|
self.frel = self.xml.get_widget("frel")
|
|
|
|
|
self.mrel.set_text(_("Birth"))
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.frel.set_text(_("Birth"))
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2003-03-03 10:02:53 +05:30
|
|
|
|
titles = [(_('Name'),3,150),(_('ID'),1,50), (_('Birth date'),4,100),
|
2002-11-15 09:19:39 +05:30
|
|
|
|
('',-1,0),('',-1,0)]
|
|
|
|
|
|
|
|
|
|
self.refmodel = ListModel.ListModel(self.add_child,titles)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.redraw_child_list(2)
|
|
|
|
|
|
2003-11-18 09:56:06 +05:30
|
|
|
|
def on_child_help_clicked(self,obj):
|
|
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2003-12-02 09:57:23 +05:30
|
|
|
|
gnome.help_display('gramps-manual','gramps-edit-quick')
|
2003-11-18 09:56:06 +05:30
|
|
|
|
|
2003-03-05 11:31:31 +05:30
|
|
|
|
def close(self,obj):
|
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
def redraw_child_list(self,filter):
|
2002-11-03 02:49:58 +05:30
|
|
|
|
self.refmodel.clear()
|
2003-05-22 02:38:20 +05:30
|
|
|
|
self.refmodel.new_model()
|
2004-02-14 11:10:30 +05:30
|
|
|
|
bday = self.person.get_birth().get_date_object()
|
|
|
|
|
dday = self.person.get_death().get_date_object()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2002-11-08 09:12:25 +05:30
|
|
|
|
slist = {}
|
2004-02-14 11:10:30 +05:30
|
|
|
|
for f in self.person.get_parent_family_id_list():
|
2002-10-20 19:55:16 +05:30
|
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
family = self.db.find_family_no_map(f[0])
|
|
|
|
|
if family.get_father_id():
|
|
|
|
|
slist[family.get_father_id()] = 1
|
|
|
|
|
elif family.get_mother_id():
|
|
|
|
|
slist[ffamily.get_mother_id()] = 1
|
|
|
|
|
for c in family.get_child_id_list():
|
|
|
|
|
slist[c.get_id()] = 1
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
person_list = []
|
2004-02-14 11:10:30 +05:30
|
|
|
|
for key in self.db.sort_person_keys():
|
|
|
|
|
person = self.db.get_person(key)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
if filter:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
if slist.has_key(key) or person.get_main_parents_family_id():
|
2002-10-20 19:55:16 +05:30
|
|
|
|
continue
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
pdday = person.get_death().get_date_object()
|
|
|
|
|
pbday = person.get_birth().get_date_object()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
if bday.getYearValid():
|
|
|
|
|
if pbday.getYearValid():
|
|
|
|
|
# reject if child birthdate < parents birthdate + 10
|
|
|
|
|
if pbday.getLowYear() < bday.getHighYear()+10:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
# reject if child birthdate > parents birthdate + 90
|
|
|
|
|
if pbday.getLowYear() > bday.getHighYear()+90:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if pdday.getYearValid():
|
|
|
|
|
# reject if child deathdate < parents birthdate+ 10
|
|
|
|
|
if pdday.getLowYear() < bday.getHighYear()+10:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if dday.getYearValid():
|
|
|
|
|
if pbday.getYearValid():
|
|
|
|
|
# reject if childs birth date > parents deathday + 3
|
|
|
|
|
if pbday.getLowYear() > dday.getHighYear()+3:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if pdday.getYearValid():
|
|
|
|
|
# reject if childs death date > parents deathday + 150
|
|
|
|
|
if pdday.getLowYear() > dday.getHighYear() + 150:
|
|
|
|
|
continue
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
person_list.append(person.get_id())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
iter = None
|
2002-11-08 09:12:25 +05:30
|
|
|
|
for idval in person_list:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
dinfo = self.db.get_person_display(idval)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
rdata = [dinfo[0],dinfo[1],dinfo[3],dinfo[5],dinfo[6]]
|
2003-05-18 09:48:12 +05:30
|
|
|
|
new_iter = self.refmodel.add(rdata)
|
|
|
|
|
names = dinfo[0].split(',')
|
|
|
|
|
if len(names):
|
|
|
|
|
ln = names[0].upper()
|
|
|
|
|
if self.default_name and ln == self.default_name and not iter:
|
|
|
|
|
iter = new_iter
|
|
|
|
|
|
2003-05-22 02:38:20 +05:30
|
|
|
|
self.refmodel.connect_model()
|
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if iter:
|
|
|
|
|
self.refmodel.selection.select_iter(iter)
|
|
|
|
|
path = self.refmodel.model.get_path(iter)
|
|
|
|
|
col = self.add_child.get_column(0)
|
|
|
|
|
self.add_child.scroll_to_cell(path,col,1,0.5,0.0)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-22 02:38:20 +05:30
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
def on_save_child_clicked(self,obj):
|
2002-11-03 02:49:58 +05:30
|
|
|
|
store,iter = self.refmodel.selection.get_selected()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2002-11-03 02:49:58 +05:30
|
|
|
|
if not iter:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
id = self.refmodel.model.get_value(iter,1)
|
2004-02-14 11:10:30 +05:30
|
|
|
|
select_child = self.db.get_person(id)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
if self.family == None:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.family = self.db.new_family()
|
|
|
|
|
self.person.add_family_id(self.family.get_id())
|
|
|
|
|
if self.person.get_gender() == RelLib.Person.male:
|
|
|
|
|
self.family.set_father_id(self.person)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.family.set_mother_id(self.person)
|
2002-11-03 02:49:58 +05:30
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.family.add_child_id(select_child)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2004-02-15 12:51:29 +05:30
|
|
|
|
mrel = const.child_relations.find_value(self.mrel.get_text())
|
2004-02-14 11:10:30 +05:30
|
|
|
|
mother = self.family.get_mother_id()
|
|
|
|
|
if mother and mother.get_gender() != RelLib.Person.female:
|
2002-11-03 02:49:58 +05:30
|
|
|
|
if mrel == "Birth":
|
|
|
|
|
mrel = "Unknown"
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2004-02-15 12:51:29 +05:30
|
|
|
|
frel = const.child_relations.find_value(self.frel.get_text())
|
2004-02-14 11:10:30 +05:30
|
|
|
|
father = self.family.get_father_id()
|
|
|
|
|
if father and father.get_gender() !=RelLib. Person.male:
|
2002-11-03 02:49:58 +05:30
|
|
|
|
if frel == "Birth":
|
|
|
|
|
frel = "Unknown"
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
select_child.add_parent_family_id(self.family.get_id(),mrel,frel)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2002-11-03 02:49:58 +05:30
|
|
|
|
Utils.modified()
|
2003-03-05 11:31:31 +05:30
|
|
|
|
self.top.destroy()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
self.redraw(self.family)
|
|
|
|
|
|
|
|
|
|
def on_show_toggled(self,obj):
|
2003-03-03 10:02:53 +05:30
|
|
|
|
self.redraw_child_list(not obj.get_active())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
2003-05-18 09:48:12 +05:30
|
|
|
|
def north_american(self,val):
|
2004-02-14 11:10:30 +05:30
|
|
|
|
if self.person.get_gender() == Person.male:
|
|
|
|
|
return self.person.get_primary_name().get_surname()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif self.family:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
f = self.family.get_father_id()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
pname = f.get_primary_name()
|
|
|
|
|
return (pname.get_surname_prefix(),pname.get_surname())
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def no_name(self,val):
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def latin_american(self,val):
|
|
|
|
|
if self.family:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
father = self.family.get_father_id()
|
|
|
|
|
mother = self.family.get_mother_id()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if not father or not mother:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fsn = father.get_primary_name().get_surname()
|
|
|
|
|
msn = mother.get_primary_name().get_surname()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if not father or not mother:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
try:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%s %s" % (fsn.split()[0],msn.split()[0]))
|
2003-05-18 09:48:12 +05:30
|
|
|
|
except:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-05-18 09:48:12 +05:30
|
|
|
|
|
|
|
|
|
def icelandic(self,val):
|
|
|
|
|
fname = ""
|
2004-02-14 11:10:30 +05:30
|
|
|
|
if self.person.get_gender() == Person.male:
|
|
|
|
|
fname = self.person.get_primary_name().get_first_name()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif self.family:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
f = self.family.get_father_id()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if f:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = f.get_primary_name().get_first_name()
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if fname:
|
2003-10-30 09:47:05 +05:30
|
|
|
|
fname = fname.split()[0]
|
2003-05-18 09:48:12 +05:30
|
|
|
|
if val == 0:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%ssson" % fname)
|
2003-05-18 09:48:12 +05:30
|
|
|
|
elif val == 1:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","%sd<EFBFBD>ttir" % fname)
|
2003-05-18 09:48:12 +05:30
|
|
|
|
else:
|
2003-10-06 09:59:50 +05:30
|
|
|
|
return ("","")
|
2003-06-17 09:45:58 +05:30
|
|
|
|
|
|
|
|
|
class EditRel:
|
|
|
|
|
|
|
|
|
|
def __init__(self,child,family,update):
|
|
|
|
|
self.update = update
|
|
|
|
|
self.child = child
|
|
|
|
|
self.family = family
|
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
|
self.xml = gtk.glade.XML(const.gladeFile,"editrel","gramps")
|
2003-06-17 09:45:58 +05:30
|
|
|
|
self.top = self.xml.get_widget('editrel')
|
|
|
|
|
self.mdesc = self.xml.get_widget('mrel_desc')
|
|
|
|
|
self.fdesc = self.xml.get_widget('frel_desc')
|
|
|
|
|
self.mentry = self.xml.get_widget('mrel')
|
|
|
|
|
self.fentry = self.xml.get_widget('frel')
|
|
|
|
|
self.mcombo = self.xml.get_widget('mrel_combo')
|
|
|
|
|
self.fcombo = self.xml.get_widget('frel_combo')
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
name = child.get_primary_name().get_name()
|
2003-06-17 09:45:58 +05:30
|
|
|
|
Utils.set_titles(self.top,self.xml.get_widget('title'),
|
|
|
|
|
_('Relationships of %s') % name)
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
father = self.family.get_father_id()
|
|
|
|
|
mother = self.family.get_mother_id()
|
2003-06-17 09:45:58 +05:30
|
|
|
|
|
|
|
|
|
if father:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
fname = father.get_primary_name().get_name()
|
2003-07-23 11:19:02 +05:30
|
|
|
|
val = _("Relationship to %(father)s") % {
|
2003-07-09 10:37:26 +05:30
|
|
|
|
'father' : fname }
|
2003-06-17 09:45:58 +05:30
|
|
|
|
self.fdesc.set_text('<b>%s</b>' % val)
|
|
|
|
|
self.fcombo.set_sensitive(1)
|
|
|
|
|
else:
|
|
|
|
|
val = _("Relationship to father")
|
|
|
|
|
self.fdesc.set_text('<b>%s</b>' % val)
|
|
|
|
|
self.fcombo.set_sensitive(0)
|
|
|
|
|
|
|
|
|
|
if mother:
|
2004-02-14 11:10:30 +05:30
|
|
|
|
mname = mother.get_primary_name().get_name()
|
2003-07-23 11:19:02 +05:30
|
|
|
|
val = _("Relationship to %(mother)s") % {
|
2003-07-09 10:37:26 +05:30
|
|
|
|
'mother' : mname }
|
2003-06-17 09:45:58 +05:30
|
|
|
|
self.mdesc.set_text('<b>%s</b>' % val)
|
|
|
|
|
self.mcombo.set_sensitive(1)
|
|
|
|
|
else:
|
|
|
|
|
val = _("Relationship to mother")
|
|
|
|
|
self.mdesc.set_text('<b>%s</b>' % val)
|
|
|
|
|
self.mcombo.set_sensitive(0)
|
|
|
|
|
|
|
|
|
|
self.xml.signal_autoconnect({
|
|
|
|
|
"on_ok_clicked" : self.on_ok_clicked,
|
|
|
|
|
"destroy_passed_object" : self.close
|
|
|
|
|
})
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
f = self.child.has_family(self.family.get_id())
|
2003-06-17 09:45:58 +05:30
|
|
|
|
self.fentry.set_text(_(f[2]))
|
|
|
|
|
self.mentry.set_text(_(f[1]))
|
|
|
|
|
|
|
|
|
|
self.fdesc.set_use_markup(gtk.TRUE)
|
|
|
|
|
self.mdesc.set_use_markup(gtk.TRUE)
|
|
|
|
|
self.top.show()
|
|
|
|
|
|
|
|
|
|
def close(self,obj):
|
|
|
|
|
self.top.destroy()
|
|
|
|
|
|
|
|
|
|
def on_ok_clicked(self,obj):
|
2004-02-15 12:51:29 +05:30
|
|
|
|
mrel = const.child_relations.find_value(self.mentry.get_text())
|
2004-02-14 11:10:30 +05:30
|
|
|
|
mother = self.family.get_mother_id()
|
|
|
|
|
if mother and mother.get_gender() != RelLib.Person.female:
|
2003-06-17 09:45:58 +05:30
|
|
|
|
if mrel == "Birth":
|
|
|
|
|
mrel = "Unknown"
|
|
|
|
|
|
2004-02-15 12:51:29 +05:30
|
|
|
|
frel = const.child_relations.find_value(self.fentry.get_text())
|
2004-02-14 11:10:30 +05:30
|
|
|
|
father = self.family.get_father_id()
|
|
|
|
|
if father and father.get_gender() !=RelLib. Person.male:
|
2003-06-17 09:45:58 +05:30
|
|
|
|
if frel == "Birth":
|
|
|
|
|
frel = "Unknown"
|
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
|
self.child.change_parent_family_id(self.family,mrel,frel)
|
2003-06-17 09:45:58 +05:30
|
|
|
|
self.update()
|
|
|
|
|
self.top.destroy()
|