2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-04-25 10:18:02 +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
|
|
|
|
#
|
|
|
|
|
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
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import os
|
|
|
|
import string
|
|
|
|
|
2003-01-15 10:55:50 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import Report
|
2003-09-02 06:17:09 +05:30
|
|
|
import BaseDoc
|
2003-01-15 10:55:50 +05:30
|
|
|
import RelLib
|
2003-01-29 10:13:12 +05:30
|
|
|
import Errors
|
|
|
|
from QuestionDialog import ErrorDialog
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2003-01-15 10:55:50 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AncestorReport
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-01-15 10:55:50 +05:30
|
|
|
class AncestorReport(Report.Report):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
def __init__(self,database,person,max,pgbrk,doc,output,newpage=0):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.map = {}
|
|
|
|
self.database = database
|
|
|
|
self.start = person
|
|
|
|
self.max_generations = max
|
|
|
|
self.pgbrk = pgbrk
|
|
|
|
self.doc = doc
|
2003-07-06 03:17:41 +05:30
|
|
|
self.newpage = newpage
|
|
|
|
if output:
|
|
|
|
self.standalone = 1
|
|
|
|
self.doc.open(output)
|
2003-09-13 10:26:04 +05:30
|
|
|
self.doc.init()
|
2003-07-06 03:17:41 +05:30
|
|
|
else:
|
|
|
|
self.standalone = 0
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
def filter(self,person_handle,index,generation=1):
|
|
|
|
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-07-28 07:59:07 +05:30
|
|
|
person = self.database.try_to_find_person_from_handle(person_handle)
|
|
|
|
family_handle = person.get_main_parents_family_handle()
|
|
|
|
if family_handle:
|
|
|
|
family = self.database.find_family_from_handle(family_handle)
|
|
|
|
self.filter(family.get_father_handle(),index*2,generation+1)
|
|
|
|
self.filter(family.get_mother_handle(),(index*2)+1,generation+1)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_report(self):
|
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
if self.newpage:
|
|
|
|
self.doc.page_break()
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
self.filter(self.start.get_handle(),1)
|
2004-03-03 10:36:06 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
name = self.start.get_primary_name().get_regular_name()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("AHN-Title")
|
2002-10-20 19:55:16 +05:30
|
|
|
title = _("Ahnentafel Report for %s") % name
|
|
|
|
self.doc.write_text(title)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
|
|
|
|
keys = self.map.keys()
|
|
|
|
keys.sort()
|
|
|
|
generation = 0
|
|
|
|
|
|
|
|
for key in keys :
|
|
|
|
if generation == 0 or key >= ( 1 << 30):
|
|
|
|
if self.pgbrk and generation > 0:
|
|
|
|
self.doc.page_break()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("AHN-Generation")
|
2002-10-20 19:55:16 +05:30
|
|
|
t = _("%s Generation") % AncestorReport.gen[generation+1]
|
|
|
|
self.doc.write_text(t)
|
|
|
|
self.doc.end_paragraph()
|
|
|
|
generation = generation + 1
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.doc.start_paragraph("AHN-Entry","%s." % str(key))
|
2004-07-28 07:59:07 +05:30
|
|
|
person_handle = self.map[key]
|
|
|
|
person = self.database.try_to_find_person_from_handle(person_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
name = person.get_primary_name().get_regular_name()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.doc.start_bold()
|
|
|
|
self.doc.write_text(name)
|
|
|
|
self.doc.end_bold()
|
|
|
|
if name[-1:] == '.':
|
|
|
|
self.doc.write_text(" ")
|
|
|
|
else:
|
|
|
|
self.doc.write_text(". ")
|
|
|
|
|
|
|
|
# Check birth record
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
birth_handle = person.get_birth_handle()
|
|
|
|
if birth_handle:
|
|
|
|
birth = self.database.find_event_from_handle(birth_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
date = birth.get_date_object().get_start_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = birth.get_place_handle()
|
|
|
|
if place_handle:
|
|
|
|
place = self.database.try_to_find_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
place = u''
|
2002-10-20 19:55:16 +05:30
|
|
|
if place[-1:] == '.':
|
|
|
|
place = place[:-1]
|
2004-07-28 07:59:07 +05:30
|
|
|
if date.get_date() != "" or place_handle:
|
2004-02-14 11:10:30 +05:30
|
|
|
if date.get_date() != "":
|
2004-04-04 10:09:52 +05:30
|
|
|
if date.get_day_valid() and date.get_month_valid():
|
2002-10-20 19:55:16 +05:30
|
|
|
if place != "":
|
|
|
|
t = _("%s was born on %s in %s. ") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(name,date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
t = _("%s was born on %s. ") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(name,date.get_date())
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
if place != "":
|
|
|
|
t = _("%s was born in the year %s in %s. ") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(name,date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
t = _("%s was born in the year %s. ") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(name,date.get_date())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.doc.write_text(t)
|
|
|
|
|
|
|
|
buried = None
|
2004-07-28 07:59:07 +05:30
|
|
|
for event_handle in person.get_event_list():
|
|
|
|
event = self.database.find_event_from_handle(event_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
if string.lower(event.get_name()) == "burial":
|
2002-10-20 19:55:16 +05:30
|
|
|
buried = event
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
death_handle = person.get_death_handle()
|
|
|
|
if death_handle:
|
|
|
|
death = self.database.find_event_from_handle(death_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
date = death.get_date_object().get_start_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = death.get_place_handle()
|
|
|
|
if place_handle:
|
|
|
|
place = self.database.try_to_find_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
place = u''
|
2002-10-20 19:55:16 +05:30
|
|
|
if place[-1:] == '.':
|
|
|
|
place = place[:-1]
|
2004-07-28 07:59:07 +05:30
|
|
|
if date.get_date() != "" or place_handle:
|
2004-02-14 11:10:30 +05:30
|
|
|
if person.get_gender() == RelLib.Person.male:
|
2002-10-20 19:55:16 +05:30
|
|
|
male = 1
|
|
|
|
else:
|
|
|
|
male = 0
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if date.get_date() != "":
|
2004-04-04 10:09:52 +05:30
|
|
|
if date.get_day_valid() and date.get_month_valid():
|
2002-10-20 19:55:16 +05:30
|
|
|
if male:
|
|
|
|
if place != "":
|
|
|
|
t = _("He died on %s in %s") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
t = _("He died on %s") % date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
if place != "":
|
|
|
|
t = _("She died on %s in %s") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
t = _("She died on %s") % date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
if male:
|
|
|
|
if place != "":
|
|
|
|
t = _("He died in the year %s in %s") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
t = _("He died in the year %s") % date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
if place != "":
|
|
|
|
t = _("She died in the year %s in %s") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-02-14 11:10:30 +05:30
|
|
|
t = _("She died in the year %s") % date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.doc.write_text(t)
|
|
|
|
|
|
|
|
if buried:
|
2004-02-14 11:10:30 +05:30
|
|
|
date = buried.get_date_object().get_start_date()
|
2004-07-28 07:59:07 +05:30
|
|
|
place_handle = buried.get_place_handle()
|
|
|
|
if place_handle:
|
|
|
|
place = self.database.try_to_find_place_from_handle(place_handle).get_title()
|
2004-03-03 10:36:06 +05:30
|
|
|
else:
|
|
|
|
place = u''
|
2002-10-20 19:55:16 +05:30
|
|
|
if place[-1:] == '.':
|
|
|
|
place = place[:-1]
|
2004-07-28 07:59:07 +05:30
|
|
|
if date.get_date() != "" or place_handle:
|
2004-02-14 11:10:30 +05:30
|
|
|
if date.get_date() != "":
|
2004-04-04 10:09:52 +05:30
|
|
|
if date.get_day_valid() and date.get_month_valid():
|
2002-10-20 19:55:16 +05:30
|
|
|
if place != "":
|
|
|
|
t = _(", and was buried on %s in %s.") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
t = _(", and was buried on %s.") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
if place != "":
|
|
|
|
t = _(", and was buried in the year %s in %s.") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
(date.get_date(),place)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
t = _(", and was buried in the year %s.") % \
|
2004-02-14 11:10:30 +05:30
|
|
|
date.get_date()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
t = _(" and was buried in %s." % place)
|
|
|
|
self.doc.write_text(t)
|
|
|
|
else:
|
|
|
|
self.doc.write_text(".")
|
|
|
|
|
|
|
|
self.doc.end_paragraph()
|
2003-07-06 03:17:41 +05:30
|
|
|
if self.standalone:
|
|
|
|
self.doc.close()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-01-15 10:55:50 +05:30
|
|
|
class AncestorReportDialog(Report.TextReportDialog):
|
2003-10-31 06:50:58 +05:30
|
|
|
|
|
|
|
report_options = {}
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def __init__(self,database,person):
|
2003-10-31 06:50:58 +05:30
|
|
|
Report.TextReportDialog.__init__(self,database,person,self.report_options)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - %s - GRAMPS" % (_("Ahnentafel Report"),_("Text Reports"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("Ahnentafel Report for %s") % name
|
|
|
|
|
|
|
|
def get_target_browser_title(self):
|
|
|
|
"""The title of the window created when the 'browse' button is
|
|
|
|
clicked in the 'Save As' frame."""
|
2003-07-06 03:17:41 +05:30
|
|
|
return _("Save Ahnentafel Report")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
|
|
|
return "ancestor_report.xml"
|
|
|
|
|
|
|
|
def make_default_style(self):
|
2003-07-06 03:17:41 +05:30
|
|
|
_make_default_style(self.default_style)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def make_report(self):
|
|
|
|
"""Create the object that will produce the Ahnentafel Report.
|
|
|
|
All user dialog has already been handled and the output file
|
|
|
|
opened."""
|
|
|
|
try:
|
2003-07-06 03:17:41 +05:30
|
|
|
MyReport = AncestorReport(self.db, self.person,
|
|
|
|
self.max_gen, self.pg_brk, self.doc, self.target_path)
|
2002-10-20 19:55:16 +05:30
|
|
|
MyReport.write_report()
|
2003-01-29 10:13:12 +05:30
|
|
|
except Errors.ReportError, msg:
|
2003-05-16 07:19:50 +05:30
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
2003-05-23 09:38:03 +05:30
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
2002-10-20 19:55:16 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
2003-07-06 03:17:41 +05:30
|
|
|
# Standalone report function
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def report(database,person):
|
|
|
|
AncestorReportDialog(database,person)
|
|
|
|
|
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up sane defaults for the book_item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
_style_file = "ancestor_report.xml"
|
|
|
|
_style_name = "default"
|
|
|
|
|
2004-07-28 07:59:07 +05:30
|
|
|
_person_handle = ""
|
2003-07-06 03:17:41 +05:30
|
|
|
_max_gen = 10
|
|
|
|
_pg_brk = 0
|
2004-07-28 07:59:07 +05:30
|
|
|
_options = ( _person_handle, _max_gen, _pg_brk )
|
2003-07-06 03:17:41 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Book Item Options dialog
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class AncestorBareReportDialog(Report.BareReportDialog):
|
|
|
|
|
|
|
|
def __init__(self,database,person,opt,stl):
|
|
|
|
|
|
|
|
self.options = opt
|
|
|
|
self.db = database
|
|
|
|
if self.options[0]:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.person = self.db.get_person(self.options[0])
|
2003-07-06 03:17:41 +05:30
|
|
|
else:
|
|
|
|
self.person = person
|
2003-07-11 08:59:33 +05:30
|
|
|
self.style_name = stl
|
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
Report.BareReportDialog.__init__(self,database,self.person)
|
|
|
|
|
|
|
|
self.max_gen = int(self.options[1])
|
|
|
|
self.pg_brk = int(self.options[2])
|
|
|
|
self.new_person = None
|
|
|
|
|
|
|
|
self.generations_spinbox.set_value(self.max_gen)
|
|
|
|
self.pagebreak_checkbox.set_active(self.pg_brk)
|
|
|
|
|
|
|
|
self.window.run()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-07-07 22:27:27 +05:30
|
|
|
def make_default_style(self):
|
|
|
|
_make_default_style(self.default_style)
|
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - GRAMPS Book" % (_("Ahnentafel Report"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("Ahnentafel Report for GRAMPS Book")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
|
|
|
return _style_file
|
|
|
|
|
|
|
|
def on_cancel(self, obj):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def on_ok_clicked(self, obj):
|
|
|
|
"""The user is satisfied with the dialog choices. Parse all options
|
|
|
|
and close the window."""
|
|
|
|
|
|
|
|
# Preparation
|
|
|
|
self.parse_style_frame()
|
|
|
|
self.parse_report_options_frame()
|
|
|
|
|
|
|
|
if self.new_person:
|
|
|
|
self.person = self.new_person
|
2004-07-28 07:59:07 +05:30
|
|
|
self.options = ( self.person.get_handle(), self.max_gen, self.pg_brk )
|
2003-07-06 03:17:41 +05:30
|
|
|
self.style_name = self.selected_style.get_name()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Function to write Book Item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def write_book_item(database,person,doc,options,newpage=0):
|
|
|
|
"""Write the Ahnentafel Report using options set.
|
|
|
|
All user dialog has already been handled and the output file opened."""
|
|
|
|
try:
|
|
|
|
if options[0]:
|
2004-02-14 11:10:30 +05:30
|
|
|
person = database.get_person(options[0])
|
2003-07-06 03:17:41 +05:30
|
|
|
max_gen = int(options[1])
|
|
|
|
pg_brk = int(options[2])
|
|
|
|
return AncestorReport(database, person, max_gen, pg_brk, doc, None, newpage )
|
|
|
|
except Errors.ReportError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def _make_default_style(default_style):
|
|
|
|
"""Make the default output style for the Ahnentafel report."""
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=16,bold=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-07-06 03:17:41 +05:30
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(1)
|
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_description(_('The style used for the title of the page.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("AHN-Title",para)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
|
|
|
font.set(face=BaseDoc.FONT_SANS_SERIF,size=14,italic=1)
|
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-07-06 03:17:41 +05:30
|
|
|
para.set_font(font)
|
|
|
|
para.set_header_level(2)
|
|
|
|
para.set(pad=0.5)
|
|
|
|
para.set_description(_('The style used for the generation header.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("AHN-Generation",para)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
para = BaseDoc.ParagraphStyle()
|
2003-07-06 03:17:41 +05:30
|
|
|
para.set(first_indent=-1.0,lmargin=1.0,pad=0.25)
|
|
|
|
para.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("AHN-Entry",para)
|
2003-07-06 03:17:41 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-07-06 03:17:41 +05:30
|
|
|
from Plugins import register_report, register_book_item
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
register_report(
|
|
|
|
report,
|
|
|
|
_("Ahnentafel Report"),
|
|
|
|
category=_("Text Reports"),
|
|
|
|
status=(_("Beta")),
|
|
|
|
description= _("Produces a textual ancestral report"),
|
2003-02-08 22:58:41 +05:30
|
|
|
author_name="Donald N. Allingham",
|
|
|
|
author_email="dallingham@users.sourceforge.net"
|
2002-10-20 19:55:16 +05:30
|
|
|
)
|
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
# (name,category,options_dialog,write_book_item,options,style_name,style_file,make_default_style)
|
|
|
|
register_book_item(
|
|
|
|
_("Ahnentafel Report"),
|
|
|
|
_("Text"),
|
|
|
|
AncestorBareReportDialog,
|
|
|
|
write_book_item,
|
|
|
|
_options,
|
|
|
|
_style_name,
|
|
|
|
_style_file,
|
|
|
|
_make_default_style
|
|
|
|
)
|