2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-03-08 22:55:09 +05:30
|
|
|
# Copyright (C) 2000-2005 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
|
|
|
"""
|
2004-02-20 06:45:37 +05:30
|
|
|
The AttrEdit module provides the AttributeEditor class. This provides a
|
|
|
|
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
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
2005-12-06 12:08:09 +05:30
|
|
|
import gc
|
|
|
|
from cgi import escape
|
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
|
|
|
|
import Utils
|
|
|
|
import Sources
|
|
|
|
import AutoComp
|
2003-01-10 10:51:32 +05:30
|
|
|
import RelLib
|
2005-08-18 11:28:28 +05:30
|
|
|
import Spell
|
2005-12-06 12:08:09 +05:30
|
|
|
import GrampsDisplay
|
2005-12-23 11:05:32 +05:30
|
|
|
import DisplayState
|
2005-08-18 11:28:28 +05:30
|
|
|
|
2003-11-27 23:31:20 +05:30
|
|
|
from QuestionDialog import WarningDialog
|
2005-12-06 12:08:09 +05:30
|
|
|
from WindowUtils import GladeIf
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AttributeEditor class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2005-12-23 11:05:32 +05:30
|
|
|
class AttributeEditor(DisplayState.ManagedWindow):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Displays a dialog that allows the user to edit an attribute.
|
|
|
|
"""
|
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-12-23 11:05:32 +05:30
|
|
|
self.db = state.db
|
2002-10-20 19:55:16 +05:30
|
|
|
self.attrib = attrib
|
* src/AddrEdit.py, src/AttrEdit.py, src/EditPerson.py,
src/EditSource.py, src/EventEdit.py, src/ImageSelect.py,
src/Marriage.py, src/NameEdit.py, src/NoteEdit.py,
src/Sources.py, src/UrlEdit.py, src/Witness.py:
Register windows opened for existing objects. Prevent editing
same object twice.
svn: r2905
2004-02-24 11:07:06 +05:30
|
|
|
self.callback = callback
|
2005-12-23 11:05:32 +05:30
|
|
|
self.track = track
|
|
|
|
self.uistate = uistate
|
|
|
|
self.state = state
|
2005-08-18 11:28:28 +05:30
|
|
|
self.alist = data_list
|
* src/AddrEdit.py, src/AttrEdit.py, src/EditPerson.py,
src/EditSource.py, src/EventEdit.py, src/ImageSelect.py,
src/Marriage.py, src/NameEdit.py, src/NoteEdit.py,
src/Sources.py, src/UrlEdit.py, src/Witness.py:
Register windows opened for existing objects. Prevent editing
same object twice.
svn: r2905
2004-02-24 11:07:06 +05:30
|
|
|
|
2005-12-23 11:05:32 +05:30
|
|
|
DisplayState.ManagedWindow.__init__(self, uistate, track, attrib)
|
|
|
|
if self.already_exist:
|
|
|
|
return
|
|
|
|
|
2006-01-17 10:33:30 +05:30
|
|
|
self.top = gtk.glade.XML(const.gladeFile, "attr_edit","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.slist = self.top.get_widget("slist")
|
|
|
|
self.value_field = self.top.get_widget("attr_value")
|
|
|
|
self.note_field = self.top.get_widget("attr_note")
|
2005-08-18 11:28:28 +05:30
|
|
|
self.spell = Spell.Spell(self.note_field)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.attrib_menu = self.top.get_widget("attr_menu")
|
2005-06-07 05:20:33 +05:30
|
|
|
# self.type_field = self.attrib_menu.child
|
2002-10-20 19:55:16 +05:30
|
|
|
self.source_field = self.top.get_widget("attr_source")
|
|
|
|
self.priv = self.top.get_widget("priv")
|
2005-04-23 21:23:30 +05:30
|
|
|
self.general_label = self.top.get_widget("general_tab")
|
|
|
|
self.sources_label = self.top.get_widget("sources_tab")
|
|
|
|
self.notes_label = self.top.get_widget("note_tab")
|
2003-12-16 01:30:47 +05:30
|
|
|
self.flowed = self.top.get_widget("attr_flowed")
|
|
|
|
self.preform = self.top.get_widget("attr_preform")
|
2003-03-06 11:42:51 +05:30
|
|
|
|
|
|
|
self.window = self.top.get_widget("attr_edit")
|
2005-06-07 05:20:33 +05:30
|
|
|
self.type_selector = AutoComp.StandardCustomSelector(
|
|
|
|
Utils.personal_attributes,self.attrib_menu,
|
|
|
|
RelLib.Attribute.CUSTOM,RelLib.Attribute.DESCRIPTION)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if attrib:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.srcreflist = self.attrib.get_source_references()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.srcreflist = []
|
|
|
|
|
2005-02-27 11:21:59 +05:30
|
|
|
self.sourcetab = Sources.SourceTab(
|
2005-12-23 11:05:32 +05:30
|
|
|
self.state, self.uistate, self.track,
|
2005-02-27 11:21:59 +05:30
|
|
|
self.srcreflist, self, self.top, self.window, self.slist,
|
|
|
|
self.top.get_widget('add_src'), self.top.get_widget('edit_src'),
|
2005-04-01 11:03:22 +05:30
|
|
|
self.top.get_widget('del_src'), self.db.readonly)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-06-03 08:24:56 +05:30
|
|
|
if title == ", ":
|
|
|
|
title = _("Attribute Editor")
|
|
|
|
else:
|
2005-12-06 12:08:09 +05:30
|
|
|
title = _("Attribute Editor for %s") % escape(title)
|
2003-03-05 11:31:31 +05:30
|
|
|
l = self.top.get_widget("title")
|
2003-03-06 11:42:51 +05:30
|
|
|
Utils.set_titles(self.window,l,title,_('Attribute Editor'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-12-23 11:05:32 +05:30
|
|
|
if attrib:
|
2005-06-07 05:20:33 +05:30
|
|
|
self.type_selector.set_values(attrib.get_type())
|
2004-02-14 11:10:30 +05:30
|
|
|
self.value_field.set_text(attrib.get_value())
|
|
|
|
self.priv.set_active(attrib.get_privacy())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if attrib.get_note():
|
|
|
|
self.note_field.get_buffer().set_text(attrib.get_note())
|
2003-11-13 00:15:07 +05:30
|
|
|
Utils.bold_label(self.notes_label)
|
2004-02-14 11:10:30 +05:30
|
|
|
if attrib.get_note_format() == 1:
|
2005-04-23 21:23:30 +05:30
|
|
|
self.preform.set_active(True)
|
2003-12-16 01:30:47 +05:30
|
|
|
else:
|
2005-04-23 21:23:30 +05:30
|
|
|
self.flowed.set_active(True)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.notes_label)
|
2005-12-23 11:05:32 +05:30
|
|
|
else:
|
|
|
|
self.attrib = RelLib.Attribute()
|
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif = GladeIf(self.top)
|
|
|
|
self.gladeif.connect('attr_edit','delete_event', self.on_delete_event)
|
2005-12-23 11:05:32 +05:30
|
|
|
self.gladeif.connect('button116', 'clicked', self.close_window)
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif.connect('button115', 'clicked', self.on_ok_clicked)
|
|
|
|
self.gladeif.connect('button127', 'clicked', self.on_help_clicked)
|
|
|
|
self.gladeif.connect('notebook', 'switch_page', self.on_switch_page)
|
|
|
|
|
|
|
|
if self.db.readonly:
|
|
|
|
w = self.top.get_widget("button115")
|
|
|
|
w.set_sensitive(False)
|
|
|
|
self.value_field.set_editable(False)
|
|
|
|
self.note_field.set_editable(False)
|
|
|
|
self.attrib_menu.set_sensitive(False)
|
|
|
|
self.priv.set_sensitive(False)
|
|
|
|
self.flowed.set_sensitive(False)
|
|
|
|
self.preform.set_sensitive(False)
|
|
|
|
|
2005-04-23 21:23:30 +05:30
|
|
|
self.update_note_page()
|
2005-12-23 11:05:32 +05:30
|
|
|
self.window.set_transient_for(self.parent_window)
|
2004-02-20 06:45:37 +05:30
|
|
|
self.window.show()
|
|
|
|
|
|
|
|
def on_delete_event(self,obj,b):
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif.close()
|
2005-12-23 11:05:32 +05:30
|
|
|
self.close()
|
2005-12-06 12:08:09 +05:30
|
|
|
gc.collect()
|
2004-02-20 06:45:37 +05:30
|
|
|
|
2005-12-23 11:05:32 +05:30
|
|
|
def close_window(self,obj):
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif.close()
|
2005-12-23 11:05:32 +05:30
|
|
|
self.close()
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
self.window.destroy()
|
2005-12-06 12:08:09 +05:30
|
|
|
gc.collect()
|
* src/SourceView.py (button_press,on_add_clicked,on_delete_clicked,
on_edit_clicked): Pass parent window to the child dialog.
* src/Sources.py (add_src_clicked): Likewise.
* src/EditSource.py (__init__): Add optional parent_window argument.
Make dialog modal and transient for its parent.
* src/gramps.glade (sourceEditor dialog): Delete unneeded handlers
for buttons.
* src/QuestionDialog.py (SaveDialog,QuestionDialog,OptionDialog,
ErrorDialog,WarningDialog,MissingMediaDialog): Set transient status
if parent is given.
* src/EventEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/Witness.py: Make WittnessEditor dialog modal and transient for
its parent. Call SelectPerson with itself as a parent.
* src/SelectPerson.py (__init__): Make dialog transient for its parent.
* src/imagesel.glade: Define proper responses and delete unneeded handlers
for buttons. Make gtkFileEntry modal.
* src/dialog.glade (all dialogs): Define proper responses for buttons.
* src/EditPerson.py (on_add_aka_clicked, on_aka_update_clicked):
Call NameEdit with itself as a parent; (on_add_attr_clicked,
on_update_attr_clicked): Call AttributeEditor with itself as a parent;
(on_add_addr_clicked,on_update_addr_clicked): Call AddressEditor with
itself as a parent; (on_add_url_clicked,on_update_url_clicked): Call
UrlEditor with itself as a parent; (on_name_note_clicked,
on_ldsbap_note_clicked,on_ldsendow_note_clicked,
on_ldsseal_note_clicked): Call NoteEditor with itself as a parent.
* src/NameEdit.py (__init__): Make dialog modal and transient for
its parent.
* src/AttrEdit.py (__init__): Likewise.
* src/AddrEdit.py (__init__): Likewise.
* src/UrlEdit.py (__init__): Likewise.
* src/NoteEdit.py (__init__): Likewise.
svn: r2131
2003-09-15 09:41:30 +05:30
|
|
|
|
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:
|
2005-12-23 11:05:32 +05:30
|
|
|
label = attrib.get_type()[1]
|
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
|
|
|
|
2003-11-18 09:56:06 +05:30
|
|
|
def on_help_clicked(self,obj):
|
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2005-12-06 12:08:09 +05:30
|
|
|
GrampsDisplay.help('adv-at')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-20 06:45:37 +05:30
|
|
|
def on_ok_clicked(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.
|
|
|
|
"""
|
2005-06-07 05:20:33 +05:30
|
|
|
attr_data = self.type_selector.get_values()
|
2003-12-17 10:53:16 +05:30
|
|
|
value = unicode(self.value_field.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
buf = self.note_field.get_buffer()
|
2005-06-04 08:24:59 +05:30
|
|
|
note = unicode(buf.get_text(buf.get_start_iter(),
|
|
|
|
buf.get_end_iter(),False))
|
2003-12-16 01:30:47 +05:30
|
|
|
format = self.preform.get_active()
|
2002-10-20 19:55:16 +05:30
|
|
|
priv = self.priv.get_active()
|
|
|
|
|
2005-06-04 08:24:59 +05:30
|
|
|
if (attr_data[0] == RelLib.Attribute.CUSTOM and
|
|
|
|
not attr_data[1] in self.alist):
|
|
|
|
WarningDialog(
|
|
|
|
_('New attribute type created'),
|
|
|
|
_('The "%s" attribute type has been added to this database.\n'
|
|
|
|
'It will now appear in the attribute menus for this database') % attr_data[1])
|
|
|
|
self.alist.append(attr_data[1])
|
2003-11-27 23:31:20 +05:30
|
|
|
self.alist.sort()
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
self.attrib.set_source_reference_list(self.srcreflist)
|
2005-06-04 08:24:59 +05:30
|
|
|
self.update(attr_data,value,note,format,priv)
|
2003-06-11 08:24:57 +05:30
|
|
|
self.callback(self.attrib)
|
2005-12-23 11:05:32 +05:30
|
|
|
self.close_window(obj)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def check(self,get,set,data):
|
|
|
|
"""Compares a data item, updates if necessary, and sets the
|
|
|
|
parents lists_changed flag"""
|
|
|
|
if get() != data:
|
|
|
|
set(data)
|
|
|
|
|
2005-06-04 08:24:59 +05:30
|
|
|
def update(self,attr_data,value,note,format,priv):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Compares the data items, and updates if necessary"""
|
2005-06-04 08:24:59 +05:30
|
|
|
self.check(self.attrib.get_type,self.attrib.set_type,attr_data)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.check(self.attrib.get_value,self.attrib.set_value,value)
|
|
|
|
self.check(self.attrib.get_note,self.attrib.set_note,note)
|
|
|
|
self.check(self.attrib.get_note_format,self.attrib.set_note_format,format)
|
|
|
|
self.check(self.attrib.get_privacy,self.attrib.set_privacy,priv)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
def on_switch_page(self,obj,a,page):
|
2005-04-23 21:23:30 +05:30
|
|
|
self.update_note_page()
|
|
|
|
|
|
|
|
def update_note_page(self):
|
2003-11-13 00:15:07 +05:30
|
|
|
buf = self.note_field.get_buffer()
|
2005-04-23 21:23:30 +05:30
|
|
|
start = buf.get_start_iter()
|
|
|
|
end = buf.get_end_iter()
|
|
|
|
text = unicode(buf.get_text(start,end,False))
|
2003-11-13 00:15:07 +05:30
|
|
|
if text:
|
|
|
|
Utils.bold_label(self.notes_label)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.notes_label)
|