7329720f07
python objects, so that Gramps classes are never pickled. * Date.py, CalSdn.py: Move to RelLib. * src/dates/Date_*.py: Use new Date. * src/plugins/*.py: Use new Date. * src/GrampsDb/_*.py: Use new Date, new unserialize. * src/*.py: Use new Date. svn: r5875
165 lines
5.1 KiB
Python
165 lines
5.1 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$
|
|
|
|
"""
|
|
Source Reference class for GRAMPS
|
|
"""
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GRAMPS modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from _BaseObject import BaseObject
|
|
from _DateBase import DateBase
|
|
from _PrivacyBase import PrivacyBase
|
|
from _NoteBase import NoteBase
|
|
from _Note import Note
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Source References for all primary objects
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class SourceRef(BaseObject,DateBase,PrivacyBase,NoteBase):
|
|
"""Source reference, containing detailed information about how a
|
|
referenced source relates to it"""
|
|
|
|
CONF_VERY_HIGH = 4
|
|
CONF_HIGH = 3
|
|
CONF_NORMAL = 2
|
|
CONF_LOW = 1
|
|
CONF_VERY_LOW = 0
|
|
|
|
def __init__(self,source=None):
|
|
"""creates a new SourceRef, copying from the source if present"""
|
|
BaseObject.__init__(self)
|
|
DateBase.__init__(self,source)
|
|
PrivacyBase.__init__(self,source)
|
|
NoteBase.__init__(self,source)
|
|
if source:
|
|
self.confidence = source.confidence
|
|
self.ref = source.ref
|
|
self.page = source.page
|
|
self.text = source.text
|
|
else:
|
|
self.confidence = SourceRef.CONF_NORMAL
|
|
self.ref = None
|
|
self.page = ""
|
|
self.note = Note()
|
|
self.text = ""
|
|
|
|
def serialize(self):
|
|
return (DateBase.serialize(self),self.private,
|
|
NoteBase.serialize(self),
|
|
self.confidence,self.ref,self.page,self.text)
|
|
|
|
def unserialize(self,data):
|
|
(date,self.private,nb,
|
|
self.confidence,self.ref,self.page,self.text) = data
|
|
DateBase.unserialize(self,date)
|
|
NoteBase.unserialize(self,nb)
|
|
return self
|
|
|
|
def get_text_data_list(self):
|
|
"""
|
|
Returns the list of all textual attributes of the object.
|
|
|
|
@return: Returns the list of all textual attributes of the object.
|
|
@rtype: list
|
|
"""
|
|
return [self.page,self.text]
|
|
#return [self.page,self.text,self.get_date()]
|
|
|
|
def get_text_data_child_list(self):
|
|
"""
|
|
Returns the list of child objects that may carry textual data.
|
|
|
|
@return: Returns the list of child objects that may carry textual data.
|
|
@rtype: list
|
|
"""
|
|
return [self.note]
|
|
|
|
def get_referenced_handles(self):
|
|
"""
|
|
Returns the list of (classname,handle) tuples for all directly
|
|
referenced primary objects.
|
|
|
|
@return: Returns the list of (classname,handle) tuples for referenced objects.
|
|
@rtype: list
|
|
"""
|
|
if self.ref:
|
|
return [('Source',self.ref)]
|
|
else:
|
|
return []
|
|
|
|
def set_confidence_level(self,val):
|
|
"""Sets the confidence level"""
|
|
self.confidence = val
|
|
|
|
def get_confidence_level(self):
|
|
"""Returns the confidence level"""
|
|
return self.confidence
|
|
|
|
def set_base_handle(self,ref):
|
|
"""sets the Source instance to which the SourceRef refers"""
|
|
self.ref = ref
|
|
|
|
def get_base_handle(self):
|
|
"""returns the Source instance to which the SourceRef refers"""
|
|
return self.ref
|
|
|
|
def set_page(self,page):
|
|
"""sets the page indicator of the SourceRef"""
|
|
self.page = page
|
|
|
|
def get_page(self):
|
|
"""gets the page indicator of the SourceRef"""
|
|
return self.page
|
|
|
|
def set_text(self,text):
|
|
"""sets the text related to the SourceRef"""
|
|
self.text = text
|
|
|
|
def get_text(self):
|
|
"""returns the text related to the SourceRef"""
|
|
return self.text
|
|
|
|
def are_equal(self,other):
|
|
"""returns True if the passed SourceRef is equal to the current"""
|
|
if self.ref and other.ref:
|
|
if self.page != other.page:
|
|
return False
|
|
if not self.get_date_object().is_equal(other.get_date_object()):
|
|
return False
|
|
if self.get_text() != other.get_text():
|
|
return False
|
|
if self.get_note() != other.get_note():
|
|
return False
|
|
if self.confidence != other.confidence:
|
|
return False
|
|
return True
|
|
elif not self.ref and not other.ref:
|
|
return True
|
|
else:
|
|
return False
|