gramps/gramps2/src/plugins/DescendReport.py

262 lines
9.1 KiB
Python
Raw Normal View History

2002-10-20 19:55:16 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
2005-12-06 12:08:09 +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
#
# $Id$
2002-10-20 19:55:16 +05:30
"Generate files/Descendant Report"
#------------------------------------------------------------------------
#
# standard python modules
#
#------------------------------------------------------------------------
import os
from gettext import gettext as _
2002-10-20 19:55:16 +05:30
#------------------------------------------------------------------------
#
# GRAMPS modules
#
#------------------------------------------------------------------------
import Report
import BaseDoc
2003-01-29 10:13:12 +05:30
import Errors
import Sort
2003-01-29 10:13:12 +05:30
from QuestionDialog import ErrorDialog
import ReportOptions
2005-12-06 12:08:09 +05:30
import ReportUtils
import NameDisplay
2002-10-20 19:55:16 +05:30
#------------------------------------------------------------------------
#
# GTK/GNOME modules
#
#------------------------------------------------------------------------
import gtk
_BORN = _('b.')
_DIED = _('d.')
2002-10-20 19:55:16 +05:30
#------------------------------------------------------------------------
#
# DescendantReport
#
#------------------------------------------------------------------------
class DescendantReport(Report.Report):
2002-10-20 19:55:16 +05:30
def __init__(self,database,person,options_class):
"""
Creates the DescendantReport object that produces the report.
The arguments are:
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.
2005-01-01 08:11:37 +05:30
gen - Maximum number of generations to include.
pagebbg - Whether to include page breaks between generations.
"""
Report.Report.__init__(self,database,person,options_class)
(self.max_generations,self.pgbrk) \
= options_class.get_report_generations()
sort = Sort.Sort(self.database)
self.by_birthdate = sort.by_birthdate
2002-10-20 19:55:16 +05:30
def dump_dates(self, person):
birth_handle = person.get_birth_handle()
if birth_handle:
2005-12-06 12:08:09 +05:30
birth = self.database.get_event_from_handle(birth_handle)
birth_date = birth.get_date_object()
birth_year_valid = birth_date.get_year_valid()
else:
birth_year_valid = 0
2005-12-06 12:08:09 +05:30
birth = None
death_handle = person.get_death_handle()
if death_handle:
2005-12-06 12:08:09 +05:30
death = self.database.get_event_from_handle(death_handle)
death_date = death.get_date_object()
death_year_valid = death_date.get_year_valid()
else:
2005-12-06 12:08:09 +05:30
death = None
death_year_valid = 0
if birth_year_valid or death_year_valid:
2002-10-20 19:55:16 +05:30
self.doc.write_text(' (')
2005-12-06 12:08:09 +05:30
birth_place = ""
if birth:
bplace_handle = birth.get_place_handle()
if bplace_handle:
birth_place = self.database.get_place_from_handle(bplace_handle).get_title()
death_place = ""
if death:
dplace_handle = death.get_place_handle()
if dplace_handle:
death_place = self.database.get_place_from_handle(dplace_handle).get_title()
if birth_year_valid:
2005-12-06 12:08:09 +05:30
if birth_place:
self.doc.write_text(_("b. %(birth_year)d - %(place)s") % {
'birth_year' : birth_date.get_year(),
'place' : birth_place,
})
else:
self.doc.write_text(_("b. %(birth_year)d") % {
'birth_year' : birth_date.get_year()
})
if death_year_valid:
if birth_year_valid:
2002-10-20 19:55:16 +05:30
self.doc.write_text(', ')
2005-12-06 12:08:09 +05:30
if death_place:
self.doc.write_text(_("d. %(death_year)d - %(place)s") % {
'death_year' : death_date.get_year(),
'place' : death_place,
})
else:
self.doc.write_text(_("d. %(death_year)d") % {
'death_year' : death_date.get_year()
})
2002-10-20 19:55:16 +05:30
self.doc.write_text(')')
def write_report(self):
self.doc.start_paragraph("DR-Title")
2005-12-06 12:08:09 +05:30
name = NameDisplay.displayer.display(self.start_person)
2002-10-20 19:55:16 +05:30
self.doc.write_text(_("Descendants of %s") % name)
self.doc.end_paragraph()
2005-12-06 12:08:09 +05:30
self.dump(1,self.start_person)
2002-10-20 19:55:16 +05:30
def dump(self,level,person):
2005-12-06 12:08:09 +05:30
self.doc.start_paragraph("DR-Level%d" % level,"%d." % level)
self.doc.write_text(NameDisplay.displayer.display(person))
self.dump_dates(person)
self.doc.end_paragraph()
2002-10-20 19:55:16 +05:30
if level >= self.max_generations:
return
childlist = []
for family_handle in person.get_family_handle_list():
* PeopleModel.py: simplify model interface * EditPerson.py: get_family_from_handle fixes * EditSource.py: get_family_from_handle fixes * GraphLayout.py: get_family_from_handle fixes * ImageSelect.py: get_family_from_handle fixes * MediaView.py: get_family_from_handle fixes * MergeData.py: get_family_from_handle fixes * PlaceView.py: get_family_from_handle fixes * ReadXML.py: get_family_from_handle fixes * RelLib.py: get_family_from_handle fixes * Relationship.py: get_family_from_handle fixes * SelectChild.py: get_family_from_handle fixes * SourceView.py: get_family_from_handle fixes * SubstKeywords.py: get_family_from_handle fixes * WriteXML.py: get_family_from_handle fixes * gramps_main.py: get_family_from_handle fixes * plugins/AncestorChart.py: get_family_from_handle fixes * plugins/AncestorChart2.py: get_family_from_handle fixes * plugins/AncestorReport.py: get_family_from_handle fixes * plugins/Ancestors.py: get_family_from_handle fixes * plugins/Check.py: get_family_from_handle fixes * plugins/CountAncestors.py: get_family_from_handle fixes * plugins/Desbrowser.py: get_family_from_handle fixes * plugins/DescendReport.py: get_family_from_handle fixes * plugins/DetAncestralReport.py: get_family_from_handle fixes * plugins/DetDescendantReport.py: get_family_from_handle fixes * plugins/FamilyGroup.py: get_family_from_handle fixes * plugins/FanChart.py: get_family_from_handle fixes * plugins/FtmStyleAncestors.py: get_family_from_handle fixes * plugins/FtmStyleDescendants.py: get_family_from_handle fixes * plugins/GraphViz.py: get_family_from_handle fixes * plugins/IndivComplete.py: get_family_from_handle fixes * plugins/IndivSummary.py: get_family_from_handle fixes * plugins/Merge.py: get_family_from_handle fixes * plugins/RelGraph.py: get_family_from_handle fixes * plugins/Verify.py: get_family_from_handle fixes * plugins/WebPage.py: get_family_from_handle fixes * plugins/WriteCD.py: get_family_from_handle fixes * plugins/WritePkg.py: get_family_from_handle fixes * plugins/rel_de.py: get_family_from_handle fixes * plugins/rel_hu.py: get_family_from_handle fixes * plugins/rel_ru.py: get_family_from_handle fixes svn: r3443
2004-08-20 03:05:16 +05:30
family = self.database.get_family_from_handle(family_handle)
2005-12-06 12:08:09 +05:30
spouse_handle = ReportUtils.find_spouse(person,family)
if spouse_handle:
spouse = self.database.get_person_from_handle(spouse_handle)
self.doc.start_paragraph("DR-Spouse%d" % level)
name = NameDisplay.displayer.display(spouse)
self.doc.write_text(_("sp. %(spouse)s") % {'spouse':name})
self.dump_dates(spouse)
self.doc.end_paragraph()
for child_handle in family.get_child_handle_list():
childlist.append(child_handle)
2005-12-06 12:08:09 +05:30
childlist.sort(self.by_birthdate)
for child_handle in childlist:
child = self.database.get_person_from_handle(child_handle)
self.dump(level+1,child)
2002-10-20 19:55:16 +05:30
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
class DescendantOptions(ReportOptions.ReportOptions):
"""
Defines options and provides handling interface.
"""
def __init__(self,name,person_id=None):
ReportOptions.ReportOptions.__init__(self,name,person_id)
def enable_options(self):
# Semi-common options that should be enabled for this report
self.enable_dict = {
'gen' : 10,
'pagebbg' : 0,
}
def make_default_style(self,default_style):
"""Make the default output style for the Descendant Report."""
f = BaseDoc.FontStyle()
2005-12-06 12:08:09 +05:30
f.set_size(12)
f.set_type_face(BaseDoc.FONT_SANS_SERIF)
f.set_bold(1)
p = BaseDoc.ParagraphStyle()
p.set_header_level(1)
2005-12-06 12:08:09 +05:30
p.set_bottom_border(1)
p.set_top_margin(ReportUtils.pt2cm(3))
p.set_bottom_margin(ReportUtils.pt2cm(3))
p.set_font(f)
2005-12-06 12:08:09 +05:30
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
p.set_description(_("The style used for the title of the page."))
default_style.add_style("DR-Title",p)
f = BaseDoc.FontStyle()
2005-12-06 12:08:09 +05:30
f.set_size(10)
for i in range(1,32):
p = BaseDoc.ParagraphStyle()
p.set_font(f)
2005-12-06 12:08:09 +05:30
p.set_top_margin(ReportUtils.pt2cm(f.get_size()*0.125))
p.set_bottom_margin(ReportUtils.pt2cm(f.get_size()*0.125))
p.set_first_indent(-0.5)
p.set_left_margin(min(10.0,float(i-0.5)))
p.set_description(_("The style used for the level %d display.") % i)
default_style.add_style("DR-Level%d" % i,p)
2005-12-06 12:08:09 +05:30
p = BaseDoc.ParagraphStyle()
p.set_font(f)
p.set_top_margin(ReportUtils.pt2cm(f.get_size()*0.125))
p.set_bottom_margin(ReportUtils.pt2cm(f.get_size()*0.125))
p.set_left_margin(min(10.0,float(i-0.5)))
p.set_description(_("The style used for the spouse level %d display.") % i)
default_style.add_style("DR-Spouse%d" % i,p)
2002-10-20 19:55:16 +05:30
#------------------------------------------------------------------------
#
#
#
#------------------------------------------------------------------------
from PluginMgr import register_report
2002-10-20 19:55:16 +05:30
register_report(
name = 'descend_report',
2005-12-06 12:08:09 +05:30
category = Report.CATEGORY_TEXT,
report_class = DescendantReport,
options_class = DescendantOptions,
modes = Report.MODE_GUI | Report.MODE_BKI | Report.MODE_CLI,
translated_name = _("Descendant Report"),
2005-12-06 12:08:09 +05:30
status=(_("Stable")),
2002-10-20 19:55:16 +05:30
description=_("Generates a list of descendants of the active person"),
2003-02-08 22:58:41 +05:30
author_name="Donald N. Allingham",
2005-12-06 12:08:09 +05:30
author_email="don@gramps-project.org"
2002-10-20 19:55:16 +05:30
)