2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2003-06-14 10:40:45 +05:30
|
|
|
# Copyright (C) 2000-2003 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
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# 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 StyleEditor
|
|
|
|
import Report
|
2002-10-20 19:55:16 +05:30
|
|
|
import GenericFilter
|
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 _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Gnome/GTK modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import gtk
|
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Set up sane defaults for the book_item
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
_person_id = ""
|
|
|
|
_max_gen = 0
|
|
|
|
_pg_brk = 0
|
2003-07-06 03:17:41 +05:30
|
|
|
_filter_num = 0
|
2003-07-07 01:25:45 +05:30
|
|
|
_options = ( _person_id, _max_gen, _pg_brk, _filter_num )
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# IndivComplete
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-27 09:56:29 +05:30
|
|
|
class IndivComplete(Report.Report):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
def __init__(self,database,person,output,document,filter,use_srcs,newpage=0):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d = document
|
|
|
|
self.use_srcs = use_srcs
|
|
|
|
self.filter = filter
|
|
|
|
c = database.getResearcher().getName()
|
|
|
|
self.d.creator(c)
|
|
|
|
self.map = {}
|
|
|
|
self.database = database
|
|
|
|
self.person = person
|
|
|
|
self.output = output
|
2003-07-11 08:22:59 +05:30
|
|
|
self.setup()
|
2003-07-06 04:40:43 +05:30
|
|
|
self.newpage = newpage
|
2003-06-27 09:56:29 +05:30
|
|
|
if output:
|
|
|
|
self.standalone = 1
|
|
|
|
self.d.open(output)
|
|
|
|
else:
|
|
|
|
self.standalone = 0
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def setup(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)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.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)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.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)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.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()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.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()
|
2002-10-20 19:55:16 +05:30
|
|
|
cell.set_longlist(1)
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.add_cell_style("IDS-ListCell",cell)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def end(self):
|
2003-06-27 09:56:29 +05:30
|
|
|
if self.standalone:
|
|
|
|
self.d.close()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def write_fact(self,event):
|
|
|
|
if event == None:
|
|
|
|
return
|
2003-06-15 08:02:10 +05:30
|
|
|
name = _(event.getName())
|
2002-10-20 19:55:16 +05:30
|
|
|
date = event.getDate()
|
|
|
|
place = event.getPlaceName()
|
|
|
|
description = event.getDescription()
|
|
|
|
if date == "":
|
|
|
|
if place == "":
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
text = '%s. %s' % (place,description)
|
|
|
|
else:
|
|
|
|
if place == "":
|
|
|
|
text = '%s. %s' % (date,description)
|
|
|
|
else:
|
|
|
|
text = _('%(date)s in %(place)s.') % { 'date' : date,
|
|
|
|
'place' : place }
|
|
|
|
text = '%s %s' % (text,description)
|
|
|
|
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell(name)
|
|
|
|
if self.use_srcs:
|
|
|
|
for s in event.getSourceRefList():
|
|
|
|
text = "%s [%s]" % (text,s.getBase().getId())
|
|
|
|
self.slist.append(s)
|
|
|
|
self.normal_cell(text)
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
def write_p_entry(self,label,parent,rel):
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell(label)
|
|
|
|
|
|
|
|
if parent:
|
|
|
|
self.normal_cell('%(parent)s, relationship: %(relation)s' %
|
|
|
|
{ 'parent' : parent, 'relation' : rel })
|
|
|
|
else:
|
|
|
|
self.normal_cell('')
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
def write_note(self):
|
|
|
|
note = self.person.getNote()
|
|
|
|
if note == '':
|
|
|
|
return
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table('note','IDS-IndTable')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell('IDS-TableHead',2)
|
|
|
|
self.d.start_paragraph('IDS-TableTitle')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_('Notes'))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell('IDS-NormalCell',2)
|
2004-01-08 01:52:10 +05:30
|
|
|
format = self.person.getNoteFormat()
|
2004-01-13 10:35:39 +05:30
|
|
|
self.d.write_note(note,format,'IDS-Normal')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
self.d.end_table()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
def write_alt_parents(self):
|
|
|
|
|
|
|
|
if len(self.person.getParentList()) < 2:
|
|
|
|
return
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("altparents","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-TableHead",2)
|
|
|
|
self.d.start_paragraph("IDS-TableTitle")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Alternate Parents"))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
for (family,mrel,frel) in self.person.getParentList():
|
|
|
|
if family == self.person.getMainParents():
|
|
|
|
continue
|
|
|
|
|
|
|
|
father = family.getFather()
|
|
|
|
if father:
|
|
|
|
fname = father.getPrimaryName().getRegularName()
|
|
|
|
frel = const.childRelations[frel]
|
|
|
|
self.write_p_entry(_('Father'),fname,frel)
|
|
|
|
else:
|
|
|
|
self.write_p_entry(_('Father'),'','')
|
|
|
|
|
|
|
|
mother = family.getMother()
|
|
|
|
if mother:
|
|
|
|
fname = mother.getPrimaryName().getRegularName()
|
|
|
|
frel = const.childRelations[frel]
|
|
|
|
self.write_p_entry(_('Mother'),fname,frel)
|
|
|
|
else:
|
|
|
|
self.write_p_entry(_('Mother'),'','')
|
|
|
|
|
|
|
|
self.d.end_table()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
def write_alt_names(self):
|
|
|
|
|
|
|
|
if len(self.person.getAlternateNames()) < 1:
|
|
|
|
return
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("altparents","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-TableHead",2)
|
|
|
|
self.d.start_paragraph("IDS-TableTitle")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Alternate Names"))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
for name in self.person.getAlternateNames():
|
2004-02-01 04:31:27 +05:30
|
|
|
type = const.NameTypesMap.find_value(name.getType())
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell(type)
|
|
|
|
text = name.getRegularName()
|
|
|
|
if self.use_srcs:
|
|
|
|
for s in name.getSourceRefList():
|
|
|
|
text = "%s [%s]" % (text,s.getBase().getId())
|
|
|
|
self.slist.append(s)
|
|
|
|
self.normal_cell(text)
|
|
|
|
self.d.end_row()
|
|
|
|
self.d.end_table()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph('IDS-Normal')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
def write_families(self):
|
|
|
|
|
|
|
|
if len(self.person.getFamilyList()) == 0:
|
|
|
|
return
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("three","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-TableHead",2)
|
|
|
|
self.d.start_paragraph("IDS-TableTitle")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Marriages/Children"))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
for family in self.person.getFamilyList():
|
|
|
|
if self.person == family.getFather():
|
|
|
|
spouse = family.getMother()
|
|
|
|
else:
|
|
|
|
spouse = family.getFather()
|
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-NormalCell",2)
|
|
|
|
self.d.start_paragraph("IDS-Spouse")
|
2002-10-20 19:55:16 +05:30
|
|
|
if spouse:
|
|
|
|
text = spouse.getPrimaryName().getRegularName()
|
|
|
|
else:
|
|
|
|
text = _("unknown")
|
|
|
|
self.d.write_text(text)
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
for event in family.getEventList():
|
|
|
|
self.write_fact(event)
|
|
|
|
|
|
|
|
child_list = family.getChildList()
|
|
|
|
if len(child_list) > 0:
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell(_("Children"))
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-ListCell")
|
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
first = 1
|
|
|
|
for child in family.getChildList():
|
|
|
|
if first == 1:
|
|
|
|
first = 0
|
|
|
|
else:
|
|
|
|
self.d.write_text('\n')
|
|
|
|
self.d.write_text(child.getPrimaryName().getRegularName())
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
self.d.end_table()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph('IDS-Normal')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
def write_sources(self):
|
|
|
|
|
|
|
|
if len(self.slist) == 0:
|
|
|
|
return
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("three","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-TableHead",2)
|
|
|
|
self.d.start_paragraph("IDS-TableTitle")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Sources"))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
for source in self.slist:
|
|
|
|
self.d.start_row()
|
|
|
|
sname = source.getBase()
|
|
|
|
self.normal_cell(sname.getId())
|
|
|
|
self.normal_cell(sname.getTitle())
|
|
|
|
self.d.end_row()
|
|
|
|
self.d.end_table()
|
|
|
|
|
|
|
|
def write_facts(self):
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("two","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.start_row()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell("IDS-TableHead",2)
|
|
|
|
self.d.start_paragraph("IDS-TableTitle")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Individual Facts"))
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
event_list = [ self.person.getBirth(), self.person.getDeath() ]
|
|
|
|
event_list = event_list + self.person.getEventList()
|
|
|
|
for event in event_list:
|
|
|
|
self.write_fact(event)
|
|
|
|
self.d.end_table()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
def normal_cell(self,text):
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_cell('IDS-NormalCell')
|
|
|
|
self.d.start_paragraph('IDS-Normal')
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(text)
|
|
|
|
self.d.end_paragraph()
|
|
|
|
self.d.end_cell()
|
|
|
|
|
|
|
|
def write_report(self):
|
2003-07-06 04:40:43 +05:30
|
|
|
if self.newpage:
|
|
|
|
self.d.page_break()
|
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
plist = self.database.getPersonMap().values()
|
|
|
|
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
|
|
|
|
for self.person in ind_list:
|
|
|
|
self.write_person(count)
|
|
|
|
count = count + 1
|
|
|
|
self.end()
|
|
|
|
|
|
|
|
def write_person(self,count):
|
|
|
|
if count != 0:
|
|
|
|
self.d.page_break()
|
|
|
|
self.slist = []
|
|
|
|
|
|
|
|
photo_list = self.person.getPhotoList()
|
|
|
|
name = self.person.getPrimaryName().getRegularName()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Title")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.write_text(_("Summary of %s") % name)
|
|
|
|
self.d.end_paragraph()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
if len(photo_list) > 0:
|
|
|
|
object = photo_list[0].getReference()
|
|
|
|
if object.getMimeType()[0:5] == "image":
|
|
|
|
file = object.getPath()
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.add_photo(file,"row",4.0,4.0)
|
|
|
|
self.d.end_paragraph()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_table("one","IDS-IndTable")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell("%s:" % _("Name"))
|
|
|
|
name = self.person.getPrimaryName()
|
|
|
|
text = name.getRegularName()
|
|
|
|
if self.use_srcs:
|
|
|
|
for s in name.getSourceRefList():
|
|
|
|
self.slist.append(s)
|
|
|
|
text = "%s [%s]" % (text,s.getBase().getId())
|
|
|
|
self.normal_cell(text)
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell("%s:" % _("Gender"))
|
|
|
|
if self.person.getGender() == RelLib.Person.male:
|
|
|
|
self.normal_cell(_("Male"))
|
|
|
|
else:
|
|
|
|
self.normal_cell(_("Female"))
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
family = self.person.getMainParents()
|
|
|
|
if family:
|
|
|
|
father_inst = family.getFather()
|
|
|
|
if father_inst:
|
|
|
|
father = father_inst.getPrimaryName().getRegularName()
|
|
|
|
else:
|
|
|
|
father = ""
|
|
|
|
mother_inst = family.getMother()
|
|
|
|
if mother_inst:
|
|
|
|
mother = mother_inst.getPrimaryName().getRegularName()
|
|
|
|
else:
|
|
|
|
mother = ""
|
|
|
|
else:
|
|
|
|
father = ""
|
|
|
|
mother = ""
|
|
|
|
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell("%s:" % _("Father"))
|
|
|
|
self.normal_cell(father)
|
|
|
|
self.d.end_row()
|
|
|
|
|
|
|
|
self.d.start_row()
|
|
|
|
self.normal_cell("%s:" % _("Mother"))
|
|
|
|
self.normal_cell(mother)
|
|
|
|
self.d.end_row()
|
|
|
|
self.d.end_table()
|
|
|
|
|
2003-07-18 19:13:13 +05:30
|
|
|
self.d.start_paragraph("IDS-Normal")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.d.end_paragraph()
|
|
|
|
|
|
|
|
self.write_alt_names()
|
|
|
|
self.write_facts()
|
|
|
|
self.write_alt_parents()
|
|
|
|
self.write_families()
|
|
|
|
self.write_note()
|
|
|
|
self.write_sources()
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-27 09:56:29 +05:30
|
|
|
class IndivCompleteDialog(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
|
|
|
|
|
|
|
def add_user_options(self):
|
2002-10-28 19:06:39 +05:30
|
|
|
self.use_srcs = gtk.CheckButton(_('Include Source Information'))
|
2002-10-20 19:55:16 +05:30
|
|
|
self.use_srcs.show()
|
|
|
|
self.add_option('',self.use_srcs)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - %s - GRAMPS" %(_("Complete Individual Report"),_("Text Reports"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("Complete Individual Report")
|
|
|
|
|
|
|
|
def get_target_browser_title(self):
|
|
|
|
"""The title of the window created when the 'browse' button is
|
|
|
|
clicked in the 'Save As' frame."""
|
|
|
|
return _("Save Complete Individual Report")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
2003-06-15 08:02:10 +05:30
|
|
|
return "indiv_complete.xml"
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def doc_uses_tables(self):
|
|
|
|
"""This report requires table support."""
|
|
|
|
return 1
|
|
|
|
|
|
|
|
def get_report_filters(self):
|
|
|
|
"""Set up the list of possible content filters."""
|
2003-07-06 03:17:41 +05:30
|
|
|
return _get_report_filters(self.person)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Create output styles appropriate to this report.
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def make_default_style(self):
|
2003-06-27 09:56:29 +05:30
|
|
|
"""Make the default output style for the Individual Complete Report."""
|
|
|
|
_make_default_style(self.default_style)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def setup_report_options(self):
|
|
|
|
"""The 'Report Options' frame is not used in this dialog."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def make_report(self):
|
|
|
|
"""Create the object that will produce the Ancestor Chart.
|
|
|
|
All user dialog has already been handled and the output file
|
|
|
|
opened."""
|
|
|
|
|
|
|
|
act = self.use_srcs.get_active()
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2003-01-29 10:13:12 +05:30
|
|
|
try:
|
|
|
|
MyReport = IndivComplete(self.db, self.person, self.target_path,
|
|
|
|
self.doc, self.filter, act)
|
|
|
|
MyReport.setup()
|
|
|
|
MyReport.write_report()
|
2003-05-23 09:38:03 +05:30
|
|
|
except Errors.FilterError, msg:
|
|
|
|
(m1,m2) = msg.messages()
|
|
|
|
ErrorDialog(m1,m2)
|
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-01-29 10:13:12 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def get_report_generations(self):
|
|
|
|
"""Return the default number of generations to start the
|
|
|
|
spinbox (zero to disable) and whether or not to include the
|
|
|
|
'page break between generations' check box"""
|
|
|
|
return (0, 0)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def report(database,person):
|
2003-06-27 09:56:29 +05:30
|
|
|
IndivCompleteDialog(database,person)
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Book Item Options dialog
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class IndivCompleteBareReportDialog(Report.BareReportDialog):
|
|
|
|
|
|
|
|
def __init__(self,database,person,opt,stl):
|
|
|
|
|
|
|
|
self.options = opt
|
|
|
|
self.db = database
|
|
|
|
if self.options[0]:
|
|
|
|
self.person = self.db.getPerson(self.options[0])
|
|
|
|
else:
|
|
|
|
self.person = person
|
2003-07-11 08:59:33 +05:30
|
|
|
self.style_name = stl
|
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
Report.BareReportDialog.__init__(self,database,self.person)
|
|
|
|
|
|
|
|
self.max_gen = int(self.options[1])
|
|
|
|
self.pg_brk = int(self.options[2])
|
2003-07-06 03:17:41 +05:30
|
|
|
self.filter_num = int(self.options[3])
|
2003-06-27 09:56:29 +05:30
|
|
|
self.new_person = None
|
|
|
|
|
|
|
|
self.generations_spinbox.set_value(self.max_gen)
|
|
|
|
self.pagebreak_checkbox.set_active(self.pg_brk)
|
2003-07-06 03:17:41 +05:30
|
|
|
self.filter_combo.set_history(self.filter_num)
|
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
self.window.run()
|
|
|
|
|
|
|
|
def make_default_style(self):
|
|
|
|
_make_default_style(self.default_style)
|
|
|
|
|
|
|
|
def get_report_filters(self):
|
2003-07-06 03:17:41 +05:30
|
|
|
return _get_report_filters(self.person)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Customization hooks
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_title(self):
|
|
|
|
"""The window title for this dialog"""
|
|
|
|
return "%s - GRAMPS Book" % (_("Individual Complete"))
|
|
|
|
|
|
|
|
def get_header(self, name):
|
|
|
|
"""The header line at the top of the dialog contents"""
|
|
|
|
return _("Individual Complete Report for GRAMPS Book")
|
|
|
|
|
|
|
|
def get_stylesheet_savefile(self):
|
|
|
|
"""Where to save styles for this report."""
|
|
|
|
return "individual_summary.xml"
|
|
|
|
|
|
|
|
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
|
2003-07-06 03:17:41 +05:30
|
|
|
self.filter_num = self.filter_combo.get_history()
|
2003-07-07 22:27:27 +05:30
|
|
|
self.options = ( self.person.getId(), self.max_gen, self.pg_brk, self.filter_num )
|
2003-06-27 09:56:29 +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):
|
2003-07-06 03:17:41 +05:30
|
|
|
"""Write the Individual Copmlete Report using the options set.
|
2003-06-27 09:56:29 +05:30
|
|
|
All user dialog has already been handled and the output file opened."""
|
|
|
|
try:
|
|
|
|
if options[0]:
|
|
|
|
person = database.getPerson(options[0])
|
|
|
|
max_gen = int(options[1])
|
|
|
|
pg_brk = int(options[2])
|
2003-07-06 03:17:41 +05:30
|
|
|
filter_num = int(options[3])
|
|
|
|
filters = _get_report_filters(person)
|
|
|
|
filter = filters[filter_num]
|
2003-06-27 09:56:29 +05:30
|
|
|
# act = self.use_srcs.get_active()
|
|
|
|
|
|
|
|
return IndivComplete(database, person, None, doc, filter, 0, newpage)
|
|
|
|
# return IndivComplete(database, person, None, doc, filter, act, 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()
|
2004-01-13 10:35:39 +05:30
|
|
|
return None
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-27 09:56:29 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Makes the default styles
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def _make_default_style(default_style):
|
|
|
|
"""Make the default output style for the Individual Complete Report."""
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_bold(1)
|
2003-09-02 06:17:09 +05:30
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_size(16)
|
2003-09-02 06:17:09 +05:30
|
|
|
p = BaseDoc.ParagraphStyle()
|
|
|
|
p.set_alignment(BaseDoc.PARA_ALIGN_CENTER)
|
2003-06-27 09:56:29 +05:30
|
|
|
p.set_font(font)
|
|
|
|
p.set_description(_("The style used for the title of the page."))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("IDS-Title",p)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_bold(1)
|
2003-09-02 06:17:09 +05:30
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_size(12)
|
|
|
|
font.set_italic(1)
|
2003-09-02 06:17:09 +05:30
|
|
|
p = BaseDoc.ParagraphStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
p.set_font(font)
|
|
|
|
p.set_description(_("The style used for category labels."))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("IDS-TableTitle",p)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_bold(1)
|
2003-09-02 06:17:09 +05:30
|
|
|
font.set_type_face(BaseDoc.FONT_SANS_SERIF)
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_size(12)
|
2003-09-02 06:17:09 +05:30
|
|
|
p = BaseDoc.ParagraphStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
p.set_font(font)
|
|
|
|
p.set_description(_("The style used for the spouse's name."))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("IDS-Spouse",p)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2003-09-02 06:17:09 +05:30
|
|
|
font = BaseDoc.FontStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
font.set_size(12)
|
2003-09-02 06:17:09 +05:30
|
|
|
p = BaseDoc.ParagraphStyle()
|
2003-06-27 09:56:29 +05:30
|
|
|
p.set_font(font)
|
|
|
|
p.set_description(_('The basic style used for the text display.'))
|
2003-07-18 19:13:13 +05:30
|
|
|
default_style.add_style("IDS-Normal",p)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
2003-07-06 03:17:41 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Builds filter list for this report
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def _get_report_filters(person):
|
|
|
|
"""Set up the list of possible content filters."""
|
|
|
|
|
|
|
|
name = person.getPrimaryName().getName()
|
|
|
|
|
|
|
|
filt_id = GenericFilter.GenericFilter()
|
|
|
|
filt_id.set_name(name)
|
|
|
|
filt_id.add_rule(GenericFilter.HasIdOf([person.getId()]))
|
|
|
|
|
|
|
|
des = GenericFilter.GenericFilter()
|
|
|
|
des.set_name(_("Descendants of %s") % name)
|
|
|
|
des.add_rule(GenericFilter.IsDescendantOf([person.getId()]))
|
|
|
|
|
|
|
|
ans = GenericFilter.GenericFilter()
|
|
|
|
ans.set_name(_("Ancestors of %s") % name)
|
|
|
|
ans.add_rule(GenericFilter.IsAncestorOf([person.getId()]))
|
|
|
|
|
|
|
|
all = GenericFilter.GenericFilter()
|
|
|
|
all.set_name(_("Entire Database"))
|
|
|
|
all.add_rule(GenericFilter.Everyone([]))
|
|
|
|
|
|
|
|
return [filt_id,des,ans,all]
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
def get_xpm_image():
|
|
|
|
return [
|
|
|
|
"48 48 33 1",
|
|
|
|
" c None",
|
|
|
|
". c #312D2A",
|
|
|
|
"+ c #4773AA",
|
|
|
|
"@ c #A8A7A5",
|
|
|
|
"# c #BABAB6",
|
|
|
|
"$ c #CECECE",
|
|
|
|
"% c #ECDECB",
|
|
|
|
"& c #5C5C60",
|
|
|
|
"* c #7C7262",
|
|
|
|
"= c #F2EADE",
|
|
|
|
"- c #867A6F",
|
|
|
|
"; c #8E887E",
|
|
|
|
"> c #E2CAA2",
|
|
|
|
", c #565354",
|
|
|
|
"' c #4C4E51",
|
|
|
|
") c #6D655E",
|
|
|
|
"! c #B69970",
|
|
|
|
"~ c #F6F2EE",
|
|
|
|
"{ c #9E9286",
|
|
|
|
"] c #416CA3",
|
|
|
|
"^ c #3D4557",
|
|
|
|
"/ c #A29E96",
|
|
|
|
"( c #FAFAFA",
|
|
|
|
"_ c #BA7458",
|
|
|
|
": c #C67C5E",
|
|
|
|
"< c #BDA37E",
|
|
|
|
"[ c #CECABE",
|
|
|
|
"} c #A26E62",
|
|
|
|
"| c #E6E2E2",
|
|
|
|
"1 c #423E43",
|
|
|
|
"2 c #966A60",
|
|
|
|
"3 c #D2D2D2",
|
|
|
|
"4 c #E5D2B8",
|
|
|
|
" ",
|
|
|
|
" ",
|
|
|
|
" ;-;-----***)*))))&,&)* ",
|
|
|
|
" -##############@#@/;&,* ",
|
|
|
|
" -#((((((((((((((=|$#;;{, ",
|
|
|
|
" ;#(((((((((((((((~|3/*[{1 ",
|
|
|
|
" -#((((((((((((((((~|3,|[;. ",
|
|
|
|
" -#((((((((@/@@@@@@/@/'(|[;. ",
|
|
|
|
" -#((((((((((((((((((~'((|[;. ",
|
|
|
|
" -#(((((((((((]+]+]]+('=((|[;1 ",
|
|
|
|
" -#(((((((((((]+]}2&+('|=((|[{, ",
|
|
|
|
" *#(((((((((((]+}<:-+('[|~((|#{) ",
|
|
|
|
" *#(((((((((((+]2_:)+('...1'&*-)* ",
|
|
|
|
" -#(((((((((((]&1(_&+(3@#//--)&1) ",
|
|
|
|
" *#~((((((((((+]1}/^]((|$##/;--'1 ",
|
|
|
|
" *#(((((((((((]]^)11,(((|$[#@/;)1 ",
|
|
|
|
" *#(((((((((((]^.^^&&((~=|$[#@/*. ",
|
|
|
|
" *#(((((((((((((~(((((((|$[$[#/-. ",
|
|
|
|
" *#~(((((((((((((((((~~~~||$[[@;. ",
|
|
|
|
" )#((((@@@@@@/@@/@/@@@@///{;[[[;. ",
|
|
|
|
" )#(((((((((((((((((~~~~==|$$[#;. ",
|
|
|
|
" )#((((@/@@/@@@@@@@@@//////{4>3{. ",
|
|
|
|
" )#(((((((((((((((~~~~==|=||%$[{. ",
|
|
|
|
" )#((((@@@@@/@@@///////////{43>/. ",
|
|
|
|
" )#((((((((((((((~~~~~==|||%>4[!. ",
|
|
|
|
" )#((((@/@@@@@//~~~~======%%%43{. ",
|
|
|
|
" )#((((((((((((~~~~=|==||=%%%44!. ",
|
|
|
|
" ,#((((@@/@@/@/@////////{/{{%4$!. ",
|
|
|
|
" )#~((((((((~~~~~~==||%=%=%%44>/. ",
|
|
|
|
" ,#((((/@@//@///////////{{{{%4>!. ",
|
|
|
|
" )#((((((((~~~=~||=|%%%%%4%%%44{. ",
|
|
|
|
" ,#((((@@@/@/////////{{{{{{{444!. ",
|
|
|
|
" &#(((((~~~~~|~|||%%|%%%%44444%!. ",
|
|
|
|
" ,#(((~/@//////////{{{{{{;{;4>4!. ",
|
|
|
|
" ,#(((~~~~=~|==|%|=%%%4%%44444>!. ",
|
|
|
|
" &#(((~//////////{{{{{{{;{;{4>><. ",
|
|
|
|
" ,#(~~~~~~==||%|%%%%%%44444>4>>!. ",
|
|
|
|
" '#~~~~///////{{{{{{{;!;{;;;>>>!. ",
|
|
|
|
" ,#~~~~||=||%|%=%%4%444>44>>>>>!. ",
|
|
|
|
" '#~~~~====%=%=%4%%444444>>>>>>!. ",
|
|
|
|
" '@~~====|%=%%%%%4%444>>4>>>>>>!. ",
|
|
|
|
" ,@~======%%%%%%>%%4444>>>>>>>>!. ",
|
|
|
|
" '#====||=%%%%4%44444>4>>>>>>>>!. ",
|
|
|
|
" ,@##@<#<<#@<<<<<<<<<<!<!!:!!!!!. ",
|
|
|
|
" ................................ ",
|
|
|
|
" ",
|
|
|
|
" ",
|
|
|
|
" "]
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2003-06-27 09:56:29 +05:30
|
|
|
from Plugins import register_report, register_book_item
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
register_report(
|
|
|
|
report,
|
|
|
|
_("Complete Individual Report"),
|
|
|
|
status=(_("Beta")),
|
|
|
|
category=_("Text Reports"),
|
|
|
|
description=_("Produces a complete report on the selected people."),
|
|
|
|
xpm=get_xpm_image()
|
|
|
|
)
|
2003-06-27 09:56:29 +05:30
|
|
|
|
|
|
|
register_book_item(
|
|
|
|
_("Individual Complete"),
|
|
|
|
_("Text"),
|
|
|
|
IndivCompleteBareReportDialog,
|
|
|
|
write_book_item,
|
|
|
|
_options,
|
|
|
|
"default" ,
|
|
|
|
"individual_complete.xml",
|
|
|
|
_make_default_style
|
|
|
|
)
|