2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-03-10 02:19:29 +05:30
|
|
|
# Copyright (C) 2000-2006 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
|
|
|
|
#
|
|
|
|
|
2004-04-25 10:18:02 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"Text Reports/Ahnentafel Report"
|
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2005-12-06 12:08:09 +05:30
|
|
|
import math
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2006-05-31 08:11:46 +05:30
|
|
|
from PluginUtils import register_report
|
|
|
|
from ReportBase import Report, ReportUtils, ReportOptions, \
|
|
|
|
CATEGORY_TEXT, MODE_GUI, MODE_BKI, MODE_CLI
|
2003-09-02 06:17:09 +05:30
|
|
|
import BaseDoc
|
2003-01-29 10:13:12 +05:30
|
|
|
import Errors
|
2005-12-06 12:08:09 +05:30
|
|
|
import NameDisplay
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# log2val
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def log2(val):
|
|
|
|
return int(math.log10(val)/math.log10(2))
|
2003-01-15 10:55:50 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AncestorReport
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2006-05-31 08:11:46 +05:30
|
|
|
class AncestorReport(Report):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-12-23 07:18:00 +05:30
|
|
|
def __init__(self,database,person,options_class):
|
|
|
|
"""
|
|
|
|
Creates the AncestorReport object that produces the Ahnentafel 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.
|
2004-12-23 07:18:00 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
|
2006-05-31 08:11:46 +05:30
|
|
|
Report.__init__(self,database,person,options_class)
|
2004-12-23 07:18:00 +05:30
|
|
|
|
2004-12-30 05:51:49 +05:30
|
|
|
self.map = {}
|
2004-12-23 07:18:00 +05:30
|
|
|
(self.max_generations,self.pgbrk) \
|
2004-12-23 23:09:47 +05:30
|
|
|
= options_class.get_report_generations()
|
2004-12-23 07:18:00 +05:30
|
|
|
|
2005-01-01 08:11:37 +05:30
|
|
|
def apply_filter(self,person_handle,index,generation=1):
|
2006-09-25 06:21:17 +05:30
|
|
|
if not person_handle or generation > self.max_generations:
|
2002-10-20 19:55:16 +05:30
|
|
|
return
|
2004-07-28 07:59:07 +05:30
|
|
|
self.map[index] = person_handle
|
2004-03-03 10:36:06 +05:30
|
|
|
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
2004-08-20 03:05:16 +05:30
|
|
|
family = self.database.get_family_from_handle(family_handle)
|
2005-01-01 08:11:37 +05:30
|
|
|
self.apply_filter(family.get_father_handle(),index*2,generation+1)
|
|
|
|
self.apply_filter(family.get_mother_handle(),(index*2)+1,generation+1)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
|
|
|
|
2005-01-01 08:11:37 +05:30
|
|
|
self.apply_filter(self.start_person.get_handle(),1)
|
2004-03-03 10:36:06 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
name = NameDisplay.displayer.display_formal(self.start_person)
|
2006-06-04 09:56:28 +05:30
|
|
|
title = _("Ahnentafel Report for %s") % name
|
|
|
|
mark = BaseDoc.IndexMark(title,BaseDoc.INDEX_TYPE_TOC,1)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("AHN-Title")
|
2006-06-04 09:56:28 +05:30
|
|
|
self.doc.write_text(title,mark)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
keys = self.map.keys()
|
|
|
|
keys.sort()
|
|
|
|
generation = 0
|
|
|
|
|
|
|
|
for key in keys :
|
2005-12-06 12:08:09 +05:30
|
|
|
if generation == log2(key):
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.pgbrk and generation > 0:
|
|
|
|
self.doc.page_break()
|
2005-12-06 12:08:09 +05:30
|
|
|
generation += 1
|
2006-06-04 09:56:28 +05:30
|
|
|
mark = BaseDoc.IndexMark(title,BaseDoc.INDEX_TYPE_TOC,2)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("AHN-Generation")
|
2006-06-04 09:56:28 +05:30
|
|
|
self.doc.write_text(_("Generation %d") % generation,mark)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
self.doc.start_paragraph("AHN-Entry","%d." % key)
|
2004-07-28 07:59:07 +05:30
|
|
|
person_handle = self.map[key]
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.database.get_person_from_handle(person_handle)
|
2005-12-06 12:08:09 +05:30
|
|
|
name = NameDisplay.displayer.display_formal(person)
|
2006-06-03 09:02:26 +05:30
|
|
|
mark = ReportUtils.get_person_mark(self.database,person)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.doc.start_bold()
|
2006-06-03 09:02:26 +05:30
|
|
|
self.doc.write_text(name.strip(),mark)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.doc.end_bold()
|
|
|
|
if name[-1:] == '.':
|
|
|
|
self.doc.write_text(" ")
|
|
|
|
else:
|
|
|
|
self.doc.write_text(". ")
|
|
|
|
|
|
|
|
# Check birth record
|
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
self.doc.write_text(ReportUtils.born_str(self.database,person))
|
|
|
|
self.doc.write_text(ReportUtils.died_str(self.database,person,0))
|
|
|
|
self.doc.write_text(ReportUtils.buried_str(self.database,person,0))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2006-05-31 08:11:46 +05:30
|
|
|
class AncestorOptions(ReportOptions):
|
2004-12-23 07:18:00 +05:30
|
|
|
|
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,name,person_id=None):
|
2006-05-31 08:11:46 +05:30
|
|
|
ReportOptions.__init__(self,name,person_id)
|
2004-12-23 07:18:00 +05:30
|
|
|
|
|
|
|
def enable_options(self):
|
|
|
|
# Semi-common options that should be enabled for this report
|
|
|
|
self.enable_dict = {
|
2005-01-01 07:47:17 +05:30
|
|
|
'gen' : 10,
|
|
|
|
'pagebbg' : 0,
|
2004-12-23 07:18:00 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
def make_default_style(self,default_style):
|
|
|
|
"""Make the default output style for the Ahnentafel report."""
|
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(1)
|
2005-12-06 12:08:09 +05:30
|
|
|
para.set_top_margin(0.25)
|
2006-06-04 09:56:28 +05:30
|
|
|
para.set_bottom_margin(0.25)
|
|
|
|
para.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
2005-12-06 12:08:09 +05:30
|
|
|
#para.set(pad=0.5)
|
2004-12-23 07:18:00 +05:30
|
|
|
para.set_description(_('The style used for the title of the page.'))
|
|
|
|
default_style.add_style("AHN-Title",para)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-12-23 07:18:00 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(2)
|
2005-12-06 12:08:09 +05:30
|
|
|
para.set_top_margin(0.125)
|
|
|
|
para.set_bottom_margin(0.125)
|
|
|
|
#para.set(pad=0.5)
|
2004-12-23 07:18:00 +05:30
|
|
|
para.set_description(_('The style used for the generation header.'))
|
|
|
|
default_style.add_style("AHN-Generation",para)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2004-12-23 07:18:00 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2005-12-06 12:08:09 +05:30
|
|
|
para.set(first_indent=-1.0,lmargin=1.0)
|
|
|
|
para.set_top_margin(0.125)
|
|
|
|
para.set_bottom_margin(0.125)
|
2004-12-23 07:18:00 +05:30
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
|
|
|
default_style.add_style("AHN-Entry",para)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2005-12-06 12:08:09 +05:30
|
|
|
# Register the plugin
|
2003-07-06 03:17:41 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
register_report(
|
2004-12-23 07:18:00 +05:30
|
|
|
name = 'ancestor_report',
|
2006-05-31 08:11:46 +05:30
|
|
|
category = CATEGORY_TEXT,
|
2004-12-23 07:18:00 +05:30
|
|
|
report_class = AncestorReport,
|
|
|
|
options_class = AncestorOptions,
|
2006-05-31 08:11:46 +05:30
|
|
|
modes = MODE_GUI | MODE_BKI | MODE_CLI,
|
2004-12-23 07:18:00 +05:30
|
|
|
translated_name = _("Ahnentafel Report"),
|
2005-12-06 12:08:09 +05:30
|
|
|
status=(_("Stable")),
|
2002-10-20 19:55:16 +05:30
|
|
|
description= _("Produces a textual ancestral report"),
|
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
|
|
|
)
|