2005-12-21 02:18:18 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2005-12-21 02:18:18 +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
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
"""
|
|
|
|
AttributeBase class for GRAMPS
|
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-10-08 22:11:39 +05:30
|
|
|
from attribute import Attribute
|
2005-12-21 02:18:18 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AttributeBase class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class AttributeBase:
|
|
|
|
"""
|
|
|
|
Base class for attribute-aware objects.
|
|
|
|
"""
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def __init__(self, source=None):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Initialize a AttributeBase. If the source is not None, then object
|
|
|
|
is initialized from values of the source object.
|
|
|
|
|
|
|
|
@param source: Object used to initialize the new object
|
|
|
|
@type source: AttributeBase
|
|
|
|
"""
|
|
|
|
if source:
|
|
|
|
self.attribute_list = [ Attribute(attribute) \
|
|
|
|
for attribute in source.attribute_list ]
|
|
|
|
else:
|
|
|
|
self.attribute_list = []
|
|
|
|
|
2006-02-04 03:33:53 +05:30
|
|
|
def serialize(self):
|
2007-01-08 07:19:33 +05:30
|
|
|
"""
|
|
|
|
Converts the object to a serialized tuple of data
|
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
return [attr.serialize() for attr in self.attribute_list]
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def unserialize(self, data):
|
|
|
|
"""
|
|
|
|
Converts a serialized tuple of data to an object
|
|
|
|
"""
|
2006-02-04 03:33:53 +05:30
|
|
|
self.attribute_list = [Attribute().unserialize(item) for item in data]
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def add_attribute(self, attribute):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Adds the L{Attribute} instance to the object's list of attributes
|
|
|
|
|
|
|
|
@param attribute: L{Attribute} instance to add.
|
|
|
|
@type attribute: L{Attribute}
|
|
|
|
"""
|
2007-02-11 11:33:29 +05:30
|
|
|
assert type(attribute) != unicode
|
2005-12-21 02:18:18 +05:30
|
|
|
self.attribute_list.append(attribute)
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def remove_attribute(self, attribute):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Removes the specified L{Attribute} instance from the attribute list
|
|
|
|
If the instance does not exist in the list, the operation has
|
|
|
|
no effect.
|
|
|
|
|
|
|
|
@param attribute: L{Attribute} instance to remove from the list
|
|
|
|
@type attribute: L{Attribute}
|
|
|
|
|
|
|
|
@return: True if the attribute was removed, False if it was not
|
|
|
|
in the list.
|
|
|
|
@rtype: bool
|
|
|
|
"""
|
|
|
|
if attribute in self.attribute_list:
|
|
|
|
self.attribute_list.remove(attribute)
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_attribute_list(self):
|
|
|
|
"""
|
|
|
|
Returns the list of L{Attribute} instances associated with the object.
|
|
|
|
|
|
|
|
@returns: Returns the list of L{Attribute} instances.
|
|
|
|
@rtype: list
|
|
|
|
"""
|
|
|
|
return self.attribute_list
|
|
|
|
|
2007-01-08 07:19:33 +05:30
|
|
|
def set_attribute_list(self, attribute_list):
|
2005-12-21 02:18:18 +05:30
|
|
|
"""
|
|
|
|
Assigns the passed list to the Person's list of L{Attribute} instances.
|
|
|
|
|
|
|
|
@param attribute_list: List of L{Attribute} instances to ba associated
|
|
|
|
with the Person
|
|
|
|
@type attribute_list: list
|
|
|
|
"""
|
|
|
|
self.attribute_list = attribute_list
|