2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# count_anc.py - Ancestor counting plugin for gramps
|
|
|
|
#
|
|
|
|
# Copyright (C) 2001 Jesper Zedlitz
|
2004-05-07 07:50:39 +05:30
|
|
|
# Copyright (C) 2004 Donald 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-05-07 07:50:39 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"View/Number of ancestors"
|
|
|
|
|
|
|
|
import os
|
|
|
|
import Utils
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
from gnome.ui import *
|
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2004-10-24 06:39:12 +05:30
|
|
|
from sets import Set
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def report(database,person):
|
|
|
|
try:
|
|
|
|
CountAncestors(database,person)
|
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
class CountAncestors:
|
|
|
|
|
|
|
|
def __init__(self,database,person):
|
|
|
|
|
|
|
|
text = ""
|
2002-12-14 10:37:09 +05:30
|
|
|
glade_file = "%s/summary.glade" % os.path.dirname(__file__)
|
2003-08-17 07:44:33 +05:30
|
|
|
topDialog = gtk.glade.XML(glade_file,"summary","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
topDialog.signal_autoconnect({
|
|
|
|
"destroy_passed_object" : Utils.destroy_passed_object,
|
|
|
|
})
|
2004-10-24 06:39:12 +05:30
|
|
|
thisgen = Set()
|
2004-10-25 08:07:18 +05:30
|
|
|
all = Set()
|
2004-10-24 06:39:12 +05:30
|
|
|
allgen = 0
|
|
|
|
thisgen.add(person.get_handle())
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
title = _("Number of ancestors of \"%s\" by generation") % person.get_primary_name().get_name()
|
2004-10-24 06:39:12 +05:30
|
|
|
text += title + ':\n'
|
2004-05-07 07:50:39 +05:30
|
|
|
thisgensize = 1
|
|
|
|
gen = 1
|
|
|
|
while thisgensize > 0:
|
|
|
|
thisgensize = 0
|
|
|
|
if thisgen:
|
|
|
|
thisgensize = len( thisgen )
|
2004-10-24 06:39:12 +05:30
|
|
|
gen -= 1
|
2002-10-20 19:55:16 +05:30
|
|
|
if thisgensize == 1 :
|
2004-10-24 06:39:12 +05:30
|
|
|
text += _("Generation %d has 1 individual.\n") % (gen)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-10-24 06:39:12 +05:30
|
|
|
text += _("Generation %d has %d individuals.\n") % (gen, thisgensize)
|
2002-10-20 19:55:16 +05:30
|
|
|
temp = thisgen
|
2004-10-24 06:39:12 +05:30
|
|
|
thisgen = Set()
|
2004-07-28 07:59:07 +05:30
|
|
|
for person_handle in temp:
|
2004-08-07 10:46:57 +05:30
|
|
|
person = 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 = database.get_family_from_handle(family_handle)
|
2004-07-28 07:59:07 +05:30
|
|
|
father_handle = family.get_father_handle()
|
|
|
|
mother_handle = family.get_mother_handle()
|
2004-10-25 08:07:18 +05:30
|
|
|
if father_handle and father_handle not in all:
|
2004-10-24 06:39:12 +05:30
|
|
|
thisgen.add(father_handle)
|
2004-10-25 08:07:18 +05:30
|
|
|
all.add(father_handle)
|
|
|
|
if mother_handle and mother_handle not in all:
|
2004-10-24 06:39:12 +05:30
|
|
|
thisgen.add(mother_handle)
|
2004-10-25 08:07:18 +05:30
|
|
|
all.add(mother_handle)
|
2004-10-24 06:39:12 +05:30
|
|
|
allgen += len(thisgen)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-10-24 06:39:12 +05:30
|
|
|
text += _("Total ancestors in generations %d to -1 is %d.\n") % (gen, allgen)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
top = topDialog.get_widget("summary")
|
|
|
|
textwindow = topDialog.get_widget("textwindow")
|
2003-05-02 05:05:27 +05:30
|
|
|
topDialog.get_widget("title").set_text(title)
|
2002-12-14 10:37:09 +05:30
|
|
|
textwindow.get_buffer().set_text(text)
|
2002-10-20 19:55:16 +05:30
|
|
|
top.show()
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from Plugins import register_report
|
|
|
|
|
|
|
|
register_report(
|
|
|
|
report,
|
|
|
|
_("Number of ancestors"),
|
|
|
|
category=_("View"),
|
|
|
|
description=_("Counts number of ancestors of selected person")
|
|
|
|
)
|
|
|
|
|