54e5538c2d
svn: r13767
120 lines
3.8 KiB
Python
120 lines
3.8 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2009 Nick Hall
|
|
#
|
|
# 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
|
|
#
|
|
# $Id$
|
|
|
|
"""
|
|
Place tree model.
|
|
"""
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# python modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import logging
|
|
_LOG = logging.getLogger(".gui.views.treemodels.placetreemodel")
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GNOME/GTK modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import gtk
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from gui.views.treemodels.placebasemodel import PlaceBaseModel
|
|
from gui.views.treemodels.treebasemodel import TreeBaseModel
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Internationalization
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from gettext import gettext as _
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# PlaceTreeModel
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class PlaceTreeModel(PlaceBaseModel, TreeBaseModel):
|
|
"""
|
|
Hierarchical place model.
|
|
"""
|
|
def __init__(self, db, scol=0, order=gtk.SORT_ASCENDING, search=None,
|
|
skip=set(), sort_map=None):
|
|
|
|
self.hmap = [self.column_header] + [None]*12
|
|
|
|
PlaceBaseModel.__init__(self, db)
|
|
TreeBaseModel.__init__(self, db, scol=scol, order=order,
|
|
tooltip_column=13,
|
|
search=search, skip=skip, sort_map=sort_map,
|
|
nrgroups = 3,
|
|
group_can_have_handle = True)
|
|
|
|
def add_row(self, handle, data):
|
|
"""
|
|
Add nodes to the node map for a single place.
|
|
|
|
handle The handle of the gramps object.
|
|
data The object data.
|
|
"""
|
|
try:
|
|
level1 = data[5][0][4]
|
|
except TypeError:
|
|
level1 = _('Unknown level1')
|
|
if not level1:
|
|
level1 = _('Unknown level1')
|
|
|
|
try:
|
|
level2 = data[5][0][3]
|
|
except TypeError:
|
|
level2 = _('Unknown level2')
|
|
if not level2:
|
|
level2 = _('Unknown level2')
|
|
|
|
try:
|
|
level3 = data[5][0][2]
|
|
except TypeError:
|
|
level3 = _('Unknown level3')
|
|
if not level3:
|
|
level3 = _('Unknown level3')
|
|
|
|
node1 = (level1, )
|
|
node2 = (level2, level1)
|
|
node3 = (level3, level2)
|
|
sort_key = self.sort_func(data)
|
|
|
|
self.add_node(None, node1, level1, None, add_parent=False)
|
|
self.add_node(node1, node2, level2, None, add_parent=False)
|
|
self.add_node(node2, node3, level3, None, add_parent=False)
|
|
self.add_node(node3, handle, sort_key, handle, add_parent=False)
|
|
|
|
def column_header(self, node):
|
|
"""
|
|
Return a column heading. This is called for nodes with no associated
|
|
Gramps handle.
|
|
"""
|
|
return node[0]
|