3b6d63e48f
* src/Selectors/_SelectPerson.py: Use new package. * src/plugins/RelCalc.py: Use new package. * src/DataViews/_PersonView.py: Use new package. * src/DisplayModels: Make new package. * src/Makefile.am: Remove old files. In po: * POTFILES.in: Add new files; remove old files. svn: r6683
139 lines
4.2 KiB
Python
139 lines
4.2 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
#
|
|
# 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$
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# python modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import time
|
|
import logging
|
|
log = logging.getLogger(".")
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GNOME/GTK modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import gtk
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
import const
|
|
import ToolTips
|
|
import GrampsLocale
|
|
import NameDisplay
|
|
import RelLib
|
|
|
|
from _BaseModel import BaseModel
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# FamilyModel
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class FamilyModel(BaseModel):
|
|
|
|
def __init__(self, db, scol=0, order=gtk.SORT_ASCENDING, search=None):
|
|
self.gen_cursor = db.get_family_cursor
|
|
self.map = db.get_raw_family_data
|
|
self.fmap = [
|
|
self.column_id,
|
|
self.column_father,
|
|
self.column_mother,
|
|
self.column_type,
|
|
self.column_change,
|
|
self.column_handle,
|
|
self.column_tooltip
|
|
]
|
|
self.smap = [
|
|
self.column_id,
|
|
self.sort_father,
|
|
self.sort_mother,
|
|
self.column_type,
|
|
self.sort_change,
|
|
self.column_handle,
|
|
self.column_tooltip
|
|
]
|
|
BaseModel.__init__(self, db, scol, order, tooltip_column=6,
|
|
search=search)
|
|
|
|
def on_get_n_columns(self):
|
|
return len(self.fmap)+1
|
|
|
|
def column_handle(self,data):
|
|
return unicode(data[0])
|
|
|
|
def column_father(self,data):
|
|
if data[2]:
|
|
person = self.db.get_person_from_handle(data[2])
|
|
return unicode(NameDisplay.displayer.sorted_name(person.primary_name))
|
|
else:
|
|
return u""
|
|
|
|
def sort_father(self,data):
|
|
if data[2]:
|
|
person = self.db.get_person_from_handle(data[2])
|
|
return NameDisplay.displayer.sort_string(person.primary_name)
|
|
else:
|
|
return u""
|
|
|
|
def column_mother(self,data):
|
|
if data[3]:
|
|
person = self.db.get_person_from_handle(data[3])
|
|
return unicode(NameDisplay.displayer.sorted_name(person.primary_name))
|
|
else:
|
|
return u""
|
|
|
|
def sort_mother(self,data):
|
|
if data[3]:
|
|
person = self.db.get_person_from_handle(data[3])
|
|
return NameDisplay.displayer.sort_string(person.primary_name)
|
|
else:
|
|
return u""
|
|
|
|
def column_type(self,data):
|
|
return str(RelLib.FamilyRelType(data[5]))
|
|
|
|
def column_id(self,data):
|
|
return unicode(data[1])
|
|
|
|
def sort_change(self,data):
|
|
return "%012x" % data[13]
|
|
|
|
def column_change(self,data):
|
|
return unicode(time.strftime('%x %X',time.localtime(data[13])),
|
|
GrampsLocale.codeset)
|
|
|
|
def column_tooltip(self,data):
|
|
if const.use_tips:
|
|
try:
|
|
t = ToolTips.TipFromFunction(self.db, lambda:
|
|
self.db.get_family_from_handle(data[0]))
|
|
except:
|
|
log.error("Failed to create tooltip.", exc_info=True)
|
|
return t
|
|
else:
|
|
return u''
|