2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-01-24 22:03:47 +05:30
|
|
|
# Copyright (C) 2000-2005 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-12-15 09:48:51 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
2004-10-19 06:22:16 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gnome/GTK modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import RelLib
|
|
|
|
import const
|
2003-09-02 06:17:09 +05:30
|
|
|
import BaseDoc
|
2003-01-15 10:55:50 +05:30
|
|
|
import Report
|
2005-12-06 12:08:09 +05:30
|
|
|
import ReportUtils
|
2002-10-20 19:55:16 +05:30
|
|
|
import GenericFilter
|
2005-01-01 07:47:17 +05:30
|
|
|
import ReportOptions
|
2005-08-06 08:27:37 +05:30
|
|
|
import DateHandler
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2005-01-01 07:47:17 +05:30
|
|
|
# IndivComplete
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-01 07:47:17 +05:30
|
|
|
class IndivCompleteReport(Report.Report):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
def __init__(self,database,person,options_class):
|
|
|
|
"""
|
|
|
|
Creates the IndivCompleteReport object that produces the report.
|
|
|
|
|
|
|
|
The arguments are:
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
database - the GRAMPS database instance
|
|
|
|
person - currently selected person
|
|
|
|
options_class - instance of the Options class for this report
|
|
|
|
|
|
|
|
This report needs the following parameters (class variables)
|
|
|
|
that come in the options class.
|
|
|
|
|
|
|
|
filter - Filter to be applied to the people of the database.
|
|
|
|
The option class carries its number, and the function
|
|
|
|
returning the list of filters.
|
|
|
|
cites - Whether or not to include source informaiton.
|
|
|
|
"""
|
|
|
|
|
|
|
|
Report.Report.__init__(self,database,person,options_class)
|
|
|
|
|
|
|
|
self.use_srcs = options_class.handler.options_dict['cites']
|
|
|
|
|
|
|
|
filter_num = options_class.get_filter_number()
|
|
|
|
filters = options_class.get_report_filters(person)
|
|
|
|
filters.extend(GenericFilter.CustomFilters.get_filters())
|
|
|
|
self.filter = filters[filter_num]
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-24 22:03:47 +05:30
|
|
|
def define_table_styles(self):
|
2003-09-02 06:17:09 +05:30
|
|
|
tbl = BaseDoc.TableStyle()
|
2002-10-20 19:55:16 +05:30
|
|
|
tbl.set_width(100)
|
|
|
|
tbl.set_columns(2)
|
|
|
|
tbl.set_column_width(0,20)
|
|
|
|
tbl.set_column_width(1,80)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.add_table_style("IDS-IndTable",tbl)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
tbl = BaseDoc.TableStyle()
|
2002-10-20 19:55:16 +05:30
|
|
|
tbl.set_width(100)
|
|
|
|
tbl.set_columns(2)
|
|
|
|
tbl.set_column_width(0,50)
|
|
|
|
tbl.set_column_width(1,50)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.add_table_style("IDS-ParentsTable",tbl)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
cell = BaseDoc.TableCellStyle()
|
2002-10-20 19:55:16 +05:30
|
|
|
cell.set_top_border(1)
|
|
|
|
cell.set_bottom_border(1)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.add_cell_style("IDS-TableHead",cell)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
cell = BaseDoc.TableCellStyle()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.add_cell_style("IDS-NormalCell",cell)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
cell = BaseDoc.TableCellStyle()
|
* src/RelLib.py (try_to_find_person_from_id): Remove transaction;
(try_to_find_source_from_id, try_to_find_object_from_id,
try_to_find_place_from_id): Add functions.
* src/plugins/WriteCD.py, src/plugins/WritePkg.py,
src/plugins/WebPage.py, src/plugins/Verify.py,
src/plugins/TimeLine.py, src/plugins/Summary.py,
src/plugins/SoundGen.py, src/plugins/RelGraph.py,
src/plugins/RelCalc.py, src/plugins/PatchNames.py,
src/plugins/Merge.py, src/plugins/IndivSummary.py,
src/plugins/IndivComplete.py, src/plugins/GraphViz.py,
src/plugins/FtmStyleDescendants.py,
src/plugins/FtmStyleAncestors.py, src/plugins/FilterEditor.py,
src/plugins/FanChart.py, src/plugins/FamilyGroup.py,
src/plugins/EventCmp.py, src/plugins/DetDescendantReport.py,
src/plugins/DetAncestralReport.py, src/plugins/DescendReport.py,
src/plugins/Desbrowser.py, src/plugins/CountAncestors.py,
src/plugins/Check.py, src/plugins/ChangeTypes.py,
src/plugins/BookReport.py, src/plugins/Ancestors.py,
src/plugins/AncestorReport.py, src/plugins/AncestorChart.py,
src/plugins/AncestorChart2.py, src/Relationship.py,
src/Sort.py, src/GenericFilter.py, src/SubstKeywords.py,
src/GraphLayout.py: Switch from find_* to try_to_find_* methods.
svn: r3191
2004-05-26 07:35:02 +05:30
|
|
|
cell.set_longlist(1)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.add_cell_style("IDS-ListCell",cell)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_fact(self,event):
|
|
|
|
if event == None:
|
|
|
|
return
|
2004-02-14 11:10:30 +05:30
|
|
|
name = _(event.get_name())
|
2005-08-06 08:27:37 +05:30
|
|
|
date = DateHandler.get_date(event)
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = event.get_place_handle()
|
|
|
|
if place_handle:
|
2005-12-06 12:08:09 +05:30
|
|
|
place = self.database.get_place_from_handle(
|
|
|
|
place_handle).get_title()
|
2004-04-26 09:47:01 +05:30
|
|
|
else:
|
|
|
|
place = ""
|
2004-02-14 11:10:30 +05:30
|
|
|
description = event.get_description()
|
2004-05-05 03:13:50 +05:30
|
|
|
if not date:
|
|
|
|
if not place:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
else:
|
|
|
|
text = '%s. %s' % (place,description)
|
|
|
|
else:
|
2004-05-05 03:13:50 +05:30
|
|
|
if not place:
|
2002-10-20 19:55:16 +05:30
|
|
|
text = '%s. %s' % (date,description)
|
|
|
|
else:
|
|
|
|
text = _('%(date)s in %(place)s.') % { 'date' : date,
|
|
|
|
'place' : place }
|
|
|
|
text = '%s %s' % (text,description)
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(name)
|
|
|
|
if self.use_srcs:
|
2004-02-14 11:10:30 +05:30
|
|
|
for s in event.get_source_references():
|
2004-08-23 22:29:13 +05:30
|
|
|
src_handle = s.get_base_handle()
|
|
|
|
src = self.database.get_source_from_handle(src_handle)
|
|
|
|
text = "%s [%s]" % (text,src.get_gramps_id())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.slist.append(s)
|
|
|
|
self.normal_cell(text)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_p_entry(self,label,parent,rel):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(label)
|
|
|
|
|
|
|
|
if parent:
|
|
|
|
self.normal_cell('%(parent)s, relationship: %(relation)s' %
|
|
|
|
{ 'parent' : parent, 'relation' : rel })
|
|
|
|
else:
|
|
|
|
self.normal_cell('')
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_note(self):
|
2005-01-01 07:47:17 +05:30
|
|
|
note = self.start_person.get_note()
|
2002-10-20 19:55:16 +05:30
|
|
|
if note == '':
|
|
|
|
return
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table('note','IDS-IndTable')
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell('IDS-TableHead',2)
|
|
|
|
self.doc.start_paragraph('IDS-TableTitle')
|
|
|
|
self.doc.write_text(_('Notes'))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell('IDS-NormalCell',2)
|
|
|
|
format = self.start_person.get_note_format()
|
|
|
|
self.doc.write_note(note,format,'IDS-Normal')
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_alt_parents(self):
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
if len(self.start_person.get_parent_family_handle_list()) < 2:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("altparents","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-TableHead",2)
|
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Alternate Parents"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
for (family_handle,mrel,frel) \
|
|
|
|
in self.start_person.get_parent_family_handle_list():
|
|
|
|
if family_handle == \
|
|
|
|
self.start_person.get_main_parents_family_handle():
|
2002-10-20 19:55:16 +05:30
|
|
|
continue
|
|
|
|
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
if father_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
father = self.database.get_person_from_handle(father_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
fname = father.get_primary_name().get_regular_name()
|
2004-02-15 12:51:29 +05:30
|
|
|
frel = const.child_relations.find_value(frel)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_p_entry(_('Father'),fname,frel)
|
|
|
|
else:
|
|
|
|
self.write_p_entry(_('Father'),'','')
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
mother_handle = family.get_mother_handle()
|
|
|
|
if mother_handle:
|
2004-08-07 10:46:57 +05:30
|
|
|
mother = self.database.get_person_from_handle(mother_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
fname = mother.get_primary_name().get_regular_name()
|
2004-02-15 12:51:29 +05:30
|
|
|
frel = const.child_relations.find_value(frel)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_p_entry(_('Mother'),fname,frel)
|
|
|
|
else:
|
|
|
|
self.write_p_entry(_('Mother'),'','')
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_alt_names(self):
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
if len(self.start_person.get_alternate_names()) < 1:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("altparents","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-TableHead",2)
|
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Alternate Names"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
for name in self.start_person.get_alternate_names():
|
2004-02-14 11:10:30 +05:30
|
|
|
type = const.NameTypesMap.find_value(name.get_type())
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(type)
|
2004-02-14 11:10:30 +05:30
|
|
|
text = name.get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.use_srcs:
|
2004-02-14 11:10:30 +05:30
|
|
|
for s in name.get_source_references():
|
2004-08-23 22:29:13 +05:30
|
|
|
src_handle = s.get_base_handle()
|
|
|
|
src = self.database.get_source_from_handle(src_handle)
|
|
|
|
text = "%s [%s]" % (text,src.get_gramps_id())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.slist.append(s)
|
|
|
|
self.normal_cell(text)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_families(self):
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
if not len(self.start_person.get_family_handle_list()):
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("three","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-TableHead",2)
|
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Marriages/Children"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
for family_handle in self.start_person.get_family_handle_list():
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2005-01-01 07:47:17 +05:30
|
|
|
if self.start_person.get_handle() == family.get_father_handle():
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_mother_handle()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-07-28 07:59:07 +05:30
|
|
|
spouse_id = family.get_father_handle()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-NormalCell",2)
|
|
|
|
self.doc.start_paragraph("IDS-Spouse")
|
2004-04-26 09:47:01 +05:30
|
|
|
if spouse_id:
|
2004-08-07 10:46:57 +05:30
|
|
|
spouse = self.database.get_person_from_handle(spouse_id)
|
2004-02-14 11:10:30 +05:30
|
|
|
text = spouse.get_primary_name().get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
text = _("unknown")
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.write_text(text)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in family.get_event_list():
|
|
|
|
if event_handle:
|
* 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.database.get_event_from_handle(event_handle)
|
2004-04-26 09:47:01 +05:30
|
|
|
self.write_fact(event)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
child_handle_list = family.get_child_handle_list()
|
|
|
|
if len(child_handle_list):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(_("Children"))
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_cell("IDS-ListCell")
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
first = 1
|
2004-07-28 07:59:07 +05:30
|
|
|
for child_handle in child_handle_list:
|
2002-10-20 19:55:16 +05:30
|
|
|
if first == 1:
|
|
|
|
first = 0
|
|
|
|
else:
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.write_text('\n')
|
2004-08-07 10:46:57 +05:30
|
|
|
child = self.database.get_person_from_handle(child_handle)
|
2005-12-06 12:08:09 +05:30
|
|
|
self.doc.write_text(
|
|
|
|
child.get_primary_name().get_regular_name())
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_sources(self):
|
|
|
|
|
|
|
|
if len(self.slist) == 0:
|
|
|
|
return
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("three","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-TableHead",2)
|
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Sources"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
for source in self.slist:
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2004-08-23 22:29:13 +05:30
|
|
|
s_handle = source.get_base_handle()
|
|
|
|
src = self.database.get_source_from_handle(s_handle)
|
|
|
|
self.normal_cell(src.get_gramps_id())
|
2004-04-26 09:47:01 +05:30
|
|
|
self.normal_cell(src.get_title())
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_facts(self):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("two","IDS-IndTable")
|
|
|
|
self.doc.start_row()
|
|
|
|
self.doc.start_cell("IDS-TableHead",2)
|
|
|
|
self.doc.start_paragraph("IDS-TableTitle")
|
|
|
|
self.doc.write_text(_("Individual Facts"))
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
|
|
|
self.doc.end_row()
|
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
event_handle_list = [ self.start_person.get_birth_handle(),
|
|
|
|
self.start_person.get_death_handle() ]
|
|
|
|
event_handle_list = event_handle_list \
|
|
|
|
+ self.start_person.get_event_list()
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in event_handle_list:
|
|
|
|
if event_handle:
|
* 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.database.get_event_from_handle(event_handle)
|
* src/RelLib.py (try_to_find_person_from_id): Remove transaction;
(try_to_find_source_from_id, try_to_find_object_from_id,
try_to_find_place_from_id): Add functions.
* src/plugins/WriteCD.py, src/plugins/WritePkg.py,
src/plugins/WebPage.py, src/plugins/Verify.py,
src/plugins/TimeLine.py, src/plugins/Summary.py,
src/plugins/SoundGen.py, src/plugins/RelGraph.py,
src/plugins/RelCalc.py, src/plugins/PatchNames.py,
src/plugins/Merge.py, src/plugins/IndivSummary.py,
src/plugins/IndivComplete.py, src/plugins/GraphViz.py,
src/plugins/FtmStyleDescendants.py,
src/plugins/FtmStyleAncestors.py, src/plugins/FilterEditor.py,
src/plugins/FanChart.py, src/plugins/FamilyGroup.py,
src/plugins/EventCmp.py, src/plugins/DetDescendantReport.py,
src/plugins/DetAncestralReport.py, src/plugins/DescendReport.py,
src/plugins/Desbrowser.py, src/plugins/CountAncestors.py,
src/plugins/Check.py, src/plugins/ChangeTypes.py,
src/plugins/BookReport.py, src/plugins/Ancestors.py,
src/plugins/AncestorReport.py, src/plugins/AncestorChart.py,
src/plugins/AncestorChart2.py, src/Relationship.py,
src/Sort.py, src/GenericFilter.py, src/SubstKeywords.py,
src/GraphLayout.py: Switch from find_* to try_to_find_* methods.
svn: r3191
2004-05-26 07:35:02 +05:30
|
|
|
self.write_fact(event)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_table()
|
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def normal_cell(self,text):
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_cell('IDS-NormalCell')
|
|
|
|
self.doc.start_paragraph('IDS-Normal')
|
|
|
|
self.doc.write_text(text)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
self.doc.end_cell()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
2004-08-13 10:04:07 +05:30
|
|
|
plist = self.database.get_person_handles(sort_handles=False)
|
2003-06-27 09:56:29 +05:30
|
|
|
if self.filter:
|
|
|
|
ind_list = self.filter.apply(self.database,plist)
|
|
|
|
else:
|
|
|
|
ind_list = plist
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
count = 0
|
2004-07-28 07:59:07 +05:30
|
|
|
for person_handle in ind_list:
|
2005-12-06 12:08:09 +05:30
|
|
|
self.start_person = self.database.get_person_from_handle(
|
|
|
|
person_handle)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.write_person(count)
|
|
|
|
count = count + 1
|
|
|
|
|
|
|
|
def write_person(self,count):
|
|
|
|
if count != 0:
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.page_break()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.slist = []
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
media_list = self.start_person.get_media_list()
|
|
|
|
name = self.start_person.get_primary_name().get_regular_name()
|
|
|
|
self.doc.start_paragraph("IDS-Title")
|
|
|
|
self.doc.write_text(_("Summary of %s") % name)
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-21 11:41:59 +05:30
|
|
|
if len(media_list) > 0:
|
2004-07-28 07:59:07 +05:30
|
|
|
object_handle = media_list[0].get_reference_handle()
|
2004-08-07 10:46:57 +05:30
|
|
|
object = self.database.get_object_from_handle(object_handle)
|
2005-05-24 18:38:06 +05:30
|
|
|
mime_type = object.get_mime_type()
|
|
|
|
if mime_type and mime_type.startswith("image"):
|
2004-02-14 11:10:30 +05:30
|
|
|
file = object.get_path()
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.add_media_object(file,"row",4.0,4.0)
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_table("one","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Name"))
|
2005-01-01 07:47:17 +05:30
|
|
|
name = self.start_person.get_primary_name()
|
2004-02-14 11:10:30 +05:30
|
|
|
text = name.get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.use_srcs:
|
2004-02-14 11:10:30 +05:30
|
|
|
for s in name.get_source_references():
|
2002-10-20 19:55:16 +05:30
|
|
|
self.slist.append(s)
|
2004-08-23 22:29:13 +05:30
|
|
|
src_handle = s.get_base_handle()
|
|
|
|
src = self.database.get_source_from_handle(src_handle)
|
|
|
|
text = "%s [%s]" % (text,src.get_gramps_id())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(text)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Gender"))
|
2005-02-01 09:16:29 +05:30
|
|
|
if self.start_person.get_gender() == RelLib.Person.MALE:
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell(_("Male"))
|
|
|
|
else:
|
|
|
|
self.normal_cell(_("Female"))
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
family_handle = self.start_person.get_main_parents_family_handle()
|
2004-07-28 07:59:07 +05:30
|
|
|
if family_handle:
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
father_inst_id = family.get_father_handle()
|
2004-04-26 09:47:01 +05:30
|
|
|
if father_inst_id:
|
2005-12-06 12:08:09 +05:30
|
|
|
father_inst = self.database.get_person_from_handle(
|
|
|
|
father_inst_id)
|
2004-02-14 11:10:30 +05:30
|
|
|
father = father_inst.get_primary_name().get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
father = ""
|
2004-07-28 07:59:07 +05:30
|
|
|
mother_inst_id = family.get_mother_handle()
|
2004-04-26 09:47:01 +05:30
|
|
|
if mother_inst_id:
|
2005-12-06 12:08:09 +05:30
|
|
|
mother_inst = self.database.get_person_from_handle(
|
|
|
|
mother_inst_id)
|
2004-02-14 11:10:30 +05:30
|
|
|
mother = mother_inst.get_primary_name().get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
mother = ""
|
|
|
|
else:
|
|
|
|
father = ""
|
|
|
|
mother = ""
|
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Father"))
|
|
|
|
self.normal_cell(father)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_row()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.normal_cell("%s:" % _("Mother"))
|
|
|
|
self.normal_cell(mother)
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.end_row()
|
|
|
|
self.doc.end_table()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.doc.start_paragraph("IDS-Normal")
|
|
|
|
self.doc.end_paragraph()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.write_alt_names()
|
|
|
|
self.write_facts()
|
|
|
|
self.write_alt_parents()
|
|
|
|
self.write_families()
|
|
|
|
self.write_note()
|
|
|
|
self.write_sources()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-01 07:47:17 +05:30
|
|
|
class IndivCompleteOptions(ReportOptions.ReportOptions):
|
|
|
|
|
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,name,person_id=None):
|
|
|
|
ReportOptions.ReportOptions.__init__(self,name,person_id)
|
|
|
|
|
|
|
|
def set_new_options(self):
|
|
|
|
# Options specific for this report
|
|
|
|
self.options_dict = {
|
|
|
|
'cites' : 1,
|
|
|
|
}
|
|
|
|
self.options_help = {
|
|
|
|
'cites' : ("=0/1","Whether to cite sources.",
|
|
|
|
["Do not cite sources","Cite sources"],
|
|
|
|
True),
|
|
|
|
}
|
|
|
|
|
|
|
|
def enable_options(self):
|
|
|
|
# Semi-common options that should be enabled for this report
|
|
|
|
self.enable_dict = {
|
|
|
|
'filter' : 0,
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_report_filters(self,person):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Set up the list of possible content filters."""
|
2005-01-01 07:47:17 +05:30
|
|
|
if person:
|
|
|
|
name = person.get_primary_name().get_name()
|
2005-07-09 01:54:54 +05:30
|
|
|
gramps_id = person.get_gramps_id()
|
2003-06-27 09:56:29 +05:30
|
|
|
else:
|
2005-01-01 07:47:17 +05:30
|
|
|
name = 'PERSON'
|
2005-07-09 01:54:54 +05:30
|
|
|
gramps_id = ''
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
filt_id = GenericFilter.GenericFilter()
|
|
|
|
filt_id.set_name(name)
|
2005-07-09 01:54:54 +05:30
|
|
|
filt_id.add_rule(GenericFilter.HasIdOf([gramps_id]))
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
all = GenericFilter.GenericFilter()
|
|
|
|
all.set_name(_("Entire Database"))
|
|
|
|
all.add_rule(GenericFilter.Everyone([]))
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
des = GenericFilter.GenericFilter()
|
|
|
|
des.set_name(_("Descendants of %s") % name)
|
2005-07-09 01:54:54 +05:30
|
|
|
des.add_rule(GenericFilter.IsDescendantOf([gramps_id,1]))
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
ans = GenericFilter.GenericFilter()
|
|
|
|
ans.set_name(_("Ancestors of %s") % name)
|
2005-07-09 01:54:54 +05:30
|
|
|
ans.add_rule(GenericFilter.IsAncestorOf([gramps_id,1]))
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
com = GenericFilter.GenericFilter()
|
|
|
|
com.set_name(_("People with common ancestor with %s") % name)
|
2005-07-09 01:54:54 +05:30
|
|
|
com.add_rule(GenericFilter.HasCommonAncestorWith([gramps_id]))
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
return [filt_id,all,des,ans,com]
|
2004-10-19 06:22:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
def add_user_options(self,dialog):
|
|
|
|
"""
|
|
|
|
Override the base class add_user_options task to add a menu that allows
|
|
|
|
the user to select the sort method.
|
|
|
|
"""
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
self.use_srcs = gtk.CheckButton(_('Include Source Information'))
|
|
|
|
self.use_srcs.set_active(self.options_dict['cites'])
|
|
|
|
dialog.add_option('',self.use_srcs)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
def parse_user_options(self,dialog):
|
|
|
|
"""
|
|
|
|
Parses the custom options that we have added.
|
|
|
|
"""
|
|
|
|
self.options_dict['cites'] = int(self.use_srcs.get_active ())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
def make_default_style(self,default_style):
|
|
|
|
"""Make the default output style for the Individual Complete Report."""
|
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set_bold(1)
|
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
|
|
font.set_size(16)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
2005-12-06 12:08:09 +05:30
|
|
|
p.set_top_margin(ReportUtils.pt2cm(8))
|
|
|
|
p.set_bottom_margin(ReportUtils.pt2cm(8))
|
2005-01-01 07:47:17 +05:30
|
|
|
p.set_font(font)
|
|
|
|
p.set_description(_("The style used for the title of the page."))
|
|
|
|
default_style.add_style("IDS-Title",p)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2005-01-01 07:47:17 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set_bold(1)
|
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
|
|
font.set_size(12)
|
|
|
|
font.set_italic(1)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_font(font)
|
2005-12-06 12:08:09 +05:30
|
|
|
p.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
p.set_bottom_margin(ReportUtils.pt2cm(3))
|
2005-01-01 07:47:17 +05:30
|
|
|
p.set_description(_("The style used for category labels."))
|
|
|
|
default_style.add_style("IDS-TableTitle",p)
|
|
|
|
|
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set_bold(1)
|
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
|
|
|
font.set_size(12)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_font(font)
|
2005-12-06 12:08:09 +05:30
|
|
|
p.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
p.set_bottom_margin(ReportUtils.pt2cm(3))
|
2005-01-01 07:47:17 +05:30
|
|
|
p.set_description(_("The style used for the spouse's name."))
|
|
|
|
default_style.add_style("IDS-Spouse",p)
|
|
|
|
|
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set_size(12)
|
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_font(font)
|
2005-12-06 12:08:09 +05:30
|
|
|
p.set_top_margin(ReportUtils.pt2cm(3))
|
|
|
|
p.set_bottom_margin(ReportUtils.pt2cm(3))
|
2005-01-01 07:47:17 +05:30
|
|
|
p.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("IDS-Normal",p)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-01-05 10:32:19 +05:30
|
|
|
from PluginMgr import register_report
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
register_report(
|
2005-01-01 07:47:17 +05:30
|
|
|
name = 'indiv_complete',
|
2005-12-06 12:08:09 +05:30
|
|
|
category = Report.CATEGORY_TEXT,
|
2005-01-01 07:47:17 +05:30
|
|
|
report_class = IndivCompleteReport,
|
|
|
|
options_class = IndivCompleteOptions,
|
|
|
|
modes = Report.MODE_GUI | Report.MODE_BKI | Report.MODE_CLI,
|
|
|
|
translated_name = _("Complete Individual Report"),
|
2005-12-06 12:08:09 +05:30
|
|
|
status=(_("Stable")),
|
|
|
|
author_name="Donald N. Allingham",
|
|
|
|
author_email="don@gramps-project.org",
|
2002-10-20 19:55:16 +05:30
|
|
|
description=_("Produces a complete report on the selected people."),
|
|
|
|
)
|