2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-04-24 03:48:01 +05:30
|
|
|
# Copyright (C) 2000-2006 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
|
|
|
|
#
|
2003-11-13 00:15:07 +05:30
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
2006-03-03 05:59:52 +05:30
|
|
|
The EditAttribute module provides the AttributeEditor class. This provides a
|
2004-02-20 06:45:37 +05:30
|
|
|
mechanism for the user to edit attribute information.
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Donald N. Allingham"
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
2005-03-08 22:55:09 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-04-07 03:32:46 +05:30
|
|
|
from gettext import gettext as _
|
2005-03-08 22:55:09 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
2006-11-26 10:09:34 +05:30
|
|
|
import Config
|
2006-03-04 12:04:48 +05:30
|
|
|
from _EditSecondary import EditSecondary
|
2007-10-08 22:11:39 +05:30
|
|
|
from gen.lib import NoteType
|
2005-08-18 11:28:28 +05:30
|
|
|
|
2006-05-05 06:09:11 +05:30
|
|
|
from DisplayTabs import SourceEmbedList, NoteTab
|
2006-02-22 05:42:52 +05:30
|
|
|
from GrampsWidgets import *
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2006-03-03 05:59:52 +05:30
|
|
|
# EditAttribute class
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-03-04 12:04:48 +05:30
|
|
|
class EditAttribute(EditSecondary):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Displays a dialog that allows the user to edit an attribute.
|
|
|
|
"""
|
2006-11-26 10:09:34 +05:30
|
|
|
|
2007-02-20 06:09:10 +05:30
|
|
|
WIDTH_KEY = Config.ATTRIBUTE_WIDTH
|
|
|
|
HEIGHT_KEY = Config.ATTRIBUTE_HEIGHT
|
2006-11-26 10:09:34 +05:30
|
|
|
|
2005-12-23 11:05:32 +05:30
|
|
|
def __init__(self, state, uistate, track, attrib, title, data_list, callback):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Displays the dialog box.
|
|
|
|
|
|
|
|
parent - The class that called the Address editor.
|
|
|
|
attrib - The attribute that is to be edited
|
|
|
|
title - The title of the dialog box
|
|
|
|
list - list of options for the pop down menu
|
|
|
|
"""
|
2005-08-18 11:28:28 +05:30
|
|
|
self.alist = data_list
|
2006-03-04 12:04:48 +05:30
|
|
|
EditSecondary.__init__(self, state, uistate, track, attrib, callback)
|
2006-04-01 05:16:34 +05:30
|
|
|
|
2006-03-02 10:02:37 +05:30
|
|
|
def _local_init(self):
|
2007-09-08 11:24:02 +05:30
|
|
|
self.top = gtk.glade.XML(const.GLADE_FILE, "attr_edit","gramps")
|
2006-04-24 03:48:01 +05:30
|
|
|
self.set_window(self.top.get_widget("attr_edit"),
|
|
|
|
self.top.get_widget('title'),
|
|
|
|
_('Attribute Editor'))
|
2006-02-22 05:42:52 +05:30
|
|
|
|
|
|
|
def _connect_signals(self):
|
2006-03-02 10:02:37 +05:30
|
|
|
self.define_cancel_button(self.top.get_widget('cancel'))
|
|
|
|
self.define_help_button(self.top.get_widget('help'),'adv-at')
|
|
|
|
self.define_ok_button(self.top.get_widget('ok'),self.save)
|
2006-02-04 10:22:16 +05:30
|
|
|
|
2006-02-22 05:42:52 +05:30
|
|
|
def _setup_fields(self):
|
|
|
|
self.value_field = MonitoredEntry(
|
|
|
|
self.top.get_widget("attr_value"),
|
2006-03-02 10:02:37 +05:30
|
|
|
self.obj.set_value, self.obj.get_value,
|
2006-02-22 05:42:52 +05:30
|
|
|
self.db.readonly)
|
|
|
|
|
2006-03-02 10:02:37 +05:30
|
|
|
self.priv = PrivacyButton(
|
|
|
|
self.top.get_widget("private"),
|
2006-12-14 21:02:33 +05:30
|
|
|
self.obj, self.db.readonly)
|
2006-02-22 05:42:52 +05:30
|
|
|
|
2006-04-21 23:45:23 +05:30
|
|
|
self.type_selector = MonitoredDataType(
|
2006-02-22 05:42:52 +05:30
|
|
|
self.top.get_widget("attr_menu"),
|
2006-04-01 05:16:34 +05:30
|
|
|
self.obj.set_type,
|
|
|
|
self.obj.get_type,
|
2006-05-21 09:54:56 +05:30
|
|
|
self.db.readonly,
|
|
|
|
custom_values=self.alist
|
2006-04-01 05:16:34 +05:30
|
|
|
)
|
2006-02-04 10:22:16 +05:30
|
|
|
|
|
|
|
def _create_tabbed_pages(self):
|
2006-03-02 10:02:37 +05:30
|
|
|
notebook = gtk.Notebook()
|
|
|
|
self.srcref_list = self._add_tab(
|
|
|
|
notebook,
|
2006-10-09 08:15:26 +05:30
|
|
|
SourceEmbedList(self.dbstate,self.uistate,self.track,self.obj))
|
2006-02-04 10:22:16 +05:30
|
|
|
|
2006-03-02 10:02:37 +05:30
|
|
|
self.note_tab = self._add_tab(
|
|
|
|
notebook,
|
|
|
|
NoteTab(self.dbstate, self.uistate, self.track,
|
2007-05-08 02:11:16 +05:30
|
|
|
self.obj.get_note_list(),
|
|
|
|
notetype = NoteType.ATTRIBUTE))
|
2006-03-02 10:02:37 +05:30
|
|
|
|
2007-01-16 12:42:10 +05:30
|
|
|
self._setup_notebook_tabs( notebook)
|
2006-03-02 10:02:37 +05:30
|
|
|
notebook.show_all()
|
2006-04-22 08:53:57 +05:30
|
|
|
self.top.get_widget('vbox').pack_start(notebook,True)
|
|
|
|
|
2005-12-23 11:05:32 +05:30
|
|
|
def build_menu_names(self, attrib):
|
|
|
|
if not attrib:
|
2004-02-20 06:45:37 +05:30
|
|
|
label = _("New Attribute")
|
|
|
|
else:
|
2006-04-21 23:45:23 +05:30
|
|
|
label = str(attrib.get_type())
|
2004-02-20 06:45:37 +05:30
|
|
|
if not label.strip():
|
|
|
|
label = _("New Attribute")
|
|
|
|
label = "%s: %s" % (_('Attribute'),label)
|
2005-12-23 11:05:32 +05:30
|
|
|
return (label, _('Attribute Editor'))
|
2004-02-20 06:45:37 +05:30
|
|
|
|
2006-03-02 10:02:37 +05:30
|
|
|
def save(self,*obj):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Called when the OK button is pressed. Gets data from the
|
|
|
|
form and updates the Attribute data structure.
|
|
|
|
"""
|
2006-06-16 09:02:51 +05:30
|
|
|
t = self.obj.get_type()
|
|
|
|
|
|
|
|
if t.is_custom() and str(t) == '':
|
|
|
|
from QuestionDialog import ErrorDialog
|
|
|
|
ErrorDialog(
|
|
|
|
_("Cannot save attribute"),
|
|
|
|
_("The attribute type cannot be empty"))
|
|
|
|
return
|
2006-03-02 10:02:37 +05:30
|
|
|
if self.callback:
|
|
|
|
self.callback(self.obj)
|
2006-04-24 04:13:36 +05:30
|
|
|
self.close()
|
2006-04-01 05:16:34 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# EditAttribute class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class EditFamilyAttribute(EditAttribute):
|
|
|
|
"""
|
|
|
|
Displays a dialog that allows the user to edit an attribute.
|
|
|
|
"""
|
|
|
|
def __init__(self, state, uistate, track, attrib, title, data_list, callback):
|
|
|
|
"""
|
|
|
|
Displays the dialog box.
|
|
|
|
|
|
|
|
parent - The class that called the Address editor.
|
|
|
|
attrib - The attribute that is to be edited
|
|
|
|
title - The title of the dialog box
|
|
|
|
list - list of options for the pop down menu
|
|
|
|
"""
|
|
|
|
EditAttribute.__init__(self, state, uistate, track, attrib, title,
|
|
|
|
data_list, callback)
|