2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-05-11 05:20:30 +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-05-11 05:20:30 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"Analysis and Exploration/Interactive descendant browser"
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import os
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
import Utils
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
import GrampsCfg
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/GNOME modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-12-25 04:06:46 +05:30
|
|
|
import gobject
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2004-05-11 05:20:30 +05:30
|
|
|
def runTool(database,person,callback,parent=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
try:
|
2004-05-11 05:20:30 +05:30
|
|
|
DesBrowse(database,person,callback,parent)
|
2002-10-20 19:55:16 +05:30
|
|
|
except:
|
|
|
|
import DisplayTrace
|
|
|
|
DisplayTrace.DisplayTrace()
|
|
|
|
|
|
|
|
class DesBrowse:
|
2004-05-11 05:20:30 +05:30
|
|
|
def __init__(self,database,person,callback,parent):
|
2002-10-20 19:55:16 +05:30
|
|
|
self.active = person
|
|
|
|
self.db = database
|
|
|
|
self.callback = callback
|
2004-05-11 05:20:30 +05:30
|
|
|
self.parent = parent
|
|
|
|
self.win_key = self
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
base = os.path.dirname(__file__)
|
|
|
|
glade_file = base + os.sep + "desbrowse.glade"
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
self.glade = gtk.glade.XML(glade_file,"top","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.glade.signal_autoconnect({
|
2004-05-11 05:20:30 +05:30
|
|
|
"destroy_passed_object" : self.close,
|
|
|
|
"on_delete_event": self.on_delete_event,
|
2002-10-20 19:55:16 +05:30
|
|
|
})
|
2004-05-11 05:20:30 +05:30
|
|
|
self.window = self.glade.get_widget("top")
|
2003-03-12 08:32:08 +05:30
|
|
|
|
2004-05-11 05:20:30 +05:30
|
|
|
Utils.set_titles(self.window,self.glade.get_widget('title'),
|
2003-03-12 08:32:08 +05:30
|
|
|
_("Descendant Browser"))
|
|
|
|
|
2004-05-11 05:20:30 +05:30
|
|
|
self.tree = self.glade.get_widget("tree1")
|
2002-12-25 04:06:46 +05:30
|
|
|
col = gtk.TreeViewColumn('',gtk.CellRendererText(),text=0)
|
|
|
|
self.tree.append_column(col)
|
|
|
|
self.model = gtk.TreeStore(gobject.TYPE_STRING,gobject.TYPE_PYOBJECT)
|
|
|
|
self.tree.set_model(self.model)
|
|
|
|
self.tree.set_rules_hint(gtk.TRUE)
|
|
|
|
self.tree.set_headers_visible(gtk.FALSE)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-11 05:20:30 +05:30
|
|
|
self.add_to_tree(None,None,self.active.get_id())
|
2002-12-25 04:06:46 +05:30
|
|
|
self.tree.expand_all()
|
|
|
|
self.tree.connect('event',self.button_press_event)
|
|
|
|
|
2004-05-11 05:20:30 +05:30
|
|
|
self.add_itself_to_menu()
|
|
|
|
self.window.show()
|
|
|
|
|
|
|
|
def on_delete_event(self,obj,b):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
|
|
|
|
def close(self,obj):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
def add_itself_to_menu(self):
|
|
|
|
self.parent.child_windows[self.win_key] = self
|
|
|
|
self.parent_menu_item = gtk.MenuItem(_("Descendant Browser tool"))
|
|
|
|
self.parent_menu_item.connect("activate",self.present)
|
|
|
|
self.parent_menu_item.show()
|
|
|
|
self.parent.winsmenu.append(self.parent_menu_item)
|
|
|
|
|
|
|
|
def remove_itself_from_menu(self):
|
|
|
|
del self.parent.child_windows[self.win_key]
|
|
|
|
self.parent_menu_item.destroy()
|
|
|
|
|
|
|
|
def present(self,obj):
|
|
|
|
self.window.present()
|
|
|
|
|
|
|
|
def add_to_tree(self,parent_id,sib_id,person_id):
|
|
|
|
item_id = self.model.insert_after(parent_id,sib_id)
|
* src/RelLib.py (try_to_find_person_from_id): Remove transaction;
(try_to_find_source_from_id, try_to_find_object_from_id,
try_to_find_place_from_id): Add functions.
* src/plugins/WriteCD.py, src/plugins/WritePkg.py,
src/plugins/WebPage.py, src/plugins/Verify.py,
src/plugins/TimeLine.py, src/plugins/Summary.py,
src/plugins/SoundGen.py, src/plugins/RelGraph.py,
src/plugins/RelCalc.py, src/plugins/PatchNames.py,
src/plugins/Merge.py, src/plugins/IndivSummary.py,
src/plugins/IndivComplete.py, src/plugins/GraphViz.py,
src/plugins/FtmStyleDescendants.py,
src/plugins/FtmStyleAncestors.py, src/plugins/FilterEditor.py,
src/plugins/FanChart.py, src/plugins/FamilyGroup.py,
src/plugins/EventCmp.py, src/plugins/DetDescendantReport.py,
src/plugins/DetAncestralReport.py, src/plugins/DescendReport.py,
src/plugins/Desbrowser.py, src/plugins/CountAncestors.py,
src/plugins/Check.py, src/plugins/ChangeTypes.py,
src/plugins/BookReport.py, src/plugins/Ancestors.py,
src/plugins/AncestorReport.py, src/plugins/AncestorChart.py,
src/plugins/AncestorChart2.py, src/Relationship.py,
src/Sort.py, src/GenericFilter.py, src/SubstKeywords.py,
src/GraphLayout.py: Switch from find_* to try_to_find_* methods.
svn: r3191
2004-05-26 07:35:02 +05:30
|
|
|
person = self.db.try_to_find_person_from_id(person_id)
|
2004-05-11 05:20:30 +05:30
|
|
|
self.model.set(item_id,0,GrampsCfg.nameof(person))
|
|
|
|
self.model.set(item_id,1,person_id)
|
|
|
|
prev_id = None
|
|
|
|
for family_id in person.get_family_id_list():
|
|
|
|
family = self.db.find_family_from_id(family_id)
|
|
|
|
for child_id in family.get_child_id_list():
|
|
|
|
prev_id = self.add_to_tree(item_id,prev_id,child_id)
|
|
|
|
return item_id
|
2002-12-25 04:06:46 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def button_press_event(self,obj,event):
|
|
|
|
import EditPerson
|
2002-12-25 04:06:46 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if event.type == gtk.gdk._2BUTTON_PRESS and event.button == 1:
|
2002-12-25 04:06:46 +05:30
|
|
|
store,iter = self.tree.get_selection().get_selected()
|
|
|
|
if iter:
|
2004-05-11 05:20:30 +05:30
|
|
|
person_id = store.get_value(iter,1)
|
* src/RelLib.py (try_to_find_person_from_id): Remove transaction;
(try_to_find_source_from_id, try_to_find_object_from_id,
try_to_find_place_from_id): Add functions.
* src/plugins/WriteCD.py, src/plugins/WritePkg.py,
src/plugins/WebPage.py, src/plugins/Verify.py,
src/plugins/TimeLine.py, src/plugins/Summary.py,
src/plugins/SoundGen.py, src/plugins/RelGraph.py,
src/plugins/RelCalc.py, src/plugins/PatchNames.py,
src/plugins/Merge.py, src/plugins/IndivSummary.py,
src/plugins/IndivComplete.py, src/plugins/GraphViz.py,
src/plugins/FtmStyleDescendants.py,
src/plugins/FtmStyleAncestors.py, src/plugins/FilterEditor.py,
src/plugins/FanChart.py, src/plugins/FamilyGroup.py,
src/plugins/EventCmp.py, src/plugins/DetDescendantReport.py,
src/plugins/DetAncestralReport.py, src/plugins/DescendReport.py,
src/plugins/Desbrowser.py, src/plugins/CountAncestors.py,
src/plugins/Check.py, src/plugins/ChangeTypes.py,
src/plugins/BookReport.py, src/plugins/Ancestors.py,
src/plugins/AncestorReport.py, src/plugins/AncestorChart.py,
src/plugins/AncestorChart2.py, src/Relationship.py,
src/Sort.py, src/GenericFilter.py, src/SubstKeywords.py,
src/GraphLayout.py: Switch from find_* to try_to_find_* methods.
svn: r3191
2004-05-26 07:35:02 +05:30
|
|
|
person = self.db.try_to_find_person_from_id(person_id)
|
2004-05-11 05:20:30 +05:30
|
|
|
EditPerson.EditPerson(self.parent,person,self.db,self.callback)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
from Plugins import register_tool
|
|
|
|
|
|
|
|
register_tool(
|
|
|
|
runTool,
|
|
|
|
_("Interactive descendant browser"),
|
|
|
|
category=_("Analysis and Exploration"),
|
2003-02-24 10:21:57 +05:30
|
|
|
description=_("Provides a browsable hierarchy based on the active person"),
|
|
|
|
author_name="Donald N. Allingham",
|
|
|
|
author_email="dallingham@users.sourceforge.net"
|
2002-10-20 19:55:16 +05:30
|
|
|
)
|