gramps/src/AttrEdit.py

251 lines
8.9 KiB
Python
Raw Normal View History

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
#
# $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 _
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gtk.glade
import gnome
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
import const
import Utils
import Sources
import AutoComp
import RelLib
from QuestionDialog import WarningDialog
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# AttributeEditor class
#
#-------------------------------------------------------------------------
class AttributeEditor:
"""
Displays a dialog that allows the user to edit an attribute.
"""
def __init__(self, parent, attrib, title, list, callback,
parent_window=None):
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
"""
self.parent = parent
if attrib:
if self.parent.child_windows.has_key(attrib):
self.parent.child_windows[attrib].present(None)
return
else:
self.win_key = attrib
else:
self.win_key = self
self.db = self.parent.db
2002-10-20 19:55:16 +05:30
self.attrib = attrib
self.callback = callback
self.child_windows = {}
self.alist = list
2003-08-17 07:44:33 +05:30
self.top = gtk.glade.XML(const.dialogFile, "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")
self.attrib_menu = self.top.get_widget("attr_menu")
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")
self.sources_label = self.top.get_widget("sourcesAttr")
self.notes_label = self.top.get_widget("noteAttr")
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")
2002-10-20 19:55:16 +05:30
if attrib:
self.srcreflist = self.attrib.get_source_references()
2002-10-20 19:55:16 +05:30
else:
self.srcreflist = []
self.sourcetab = Sources.SourceTab(
self.srcreflist, self, self.top, self.window, self.slist,
self.top.get_widget('add_src'), self.top.get_widget('edit_src'),
self.top.get_widget('del_src'), self.db.readonly)
2002-10-20 19:55:16 +05:30
if title == ", ":
title = _("Attribute Editor")
else:
title = _("Attribute Editor for %s") % 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
AutoComp.fill_combo(self.attrib_menu,list)
2002-10-20 19:55:16 +05:30
if attrib != None:
self.type_field.set_text(const.display_attr(attrib.get_type()))
self.value_field.set_text(attrib.get_value())
self.priv.set_active(attrib.get_privacy())
2002-10-20 19:55:16 +05:30
if attrib.get_note():
self.note_field.get_buffer().set_text(attrib.get_note())
Utils.bold_label(self.notes_label)
if attrib.get_note_format() == 1:
self.preform.set_active(1)
else:
self.flowed.set_active(1)
2002-10-20 19:55:16 +05:30
self.top.signal_autoconnect({
"on_help_attr_clicked" : self.on_help_clicked,
2004-02-20 06:45:37 +05:30
"on_ok_attr_clicked" : self.on_ok_clicked,
"on_cancel_attr_clicked" : self.close,
"on_attr_edit_delete_event" : self.on_delete_event,
"on_switch_page" : self.on_switch_page
2002-10-20 19:55:16 +05:30
})
* 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
if parent_window:
self.window.set_transient_for(parent_window)
2004-02-20 06:45:37 +05:30
self.add_itself_to_menu()
self.window.show()
def on_delete_event(self,obj,b):
self.close_child_windows()
self.remove_itself_from_menu()
def close(self,obj):
self.close_child_windows()
self.remove_itself_from_menu()
* 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()
2004-02-20 06:45:37 +05:30
def close_child_windows(self):
for child_window in self.child_windows.values():
2004-02-20 06:45:37 +05:30
child_window.close(None)
self.child_windows = {}
2004-02-20 06:45:37 +05:30
def add_itself_to_menu(self):
self.parent.child_windows[self.win_key] = self
2004-02-20 06:45:37 +05:30
if not self.attrib:
label = _("New Attribute")
else:
label = self.attrib.get_type()
if not label.strip():
label = _("New Attribute")
label = "%s: %s" % (_('Attribute'),label)
self.parent_menu_item = gtk.MenuItem(label)
self.parent_menu_item.set_submenu(gtk.Menu())
self.parent_menu_item.show()
2004-02-25 08:50:53 +05:30
self.parent.winsmenu.append(self.parent_menu_item)
self.winsmenu = self.parent_menu_item.get_submenu()
2004-02-20 06:45:37 +05:30
self.menu_item = gtk.MenuItem(_('Attribute Editor'))
self.menu_item.connect("activate",self.present)
self.menu_item.show()
2004-02-25 08:50:53 +05:30
self.winsmenu.append(self.menu_item)
2004-02-20 06:45:37 +05:30
def remove_itself_from_menu(self):
del self.parent.child_windows[self.win_key]
2004-02-20 06:45:37 +05:30
self.menu_item.destroy()
2004-02-25 08:50:53 +05:30
self.winsmenu.destroy()
2004-02-20 06:45:37 +05:30
self.parent_menu_item.destroy()
def present(self,obj):
self.window.present()
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
gnome.help_display('gramps-manual','gramps-edit-complete')
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.
"""
attr = unicode(self.type_field.get_text())
* src/PlaceView.py: Make sure to add new place after edit * src/AddMedia.py: unicode conversion from gtk.Entry * src/AddSpouse.py: unicode conversion from gtk.Entry * src/AddrEdit.py: unicode conversion from gtk.Entry * src/AttrEdit.py: unicode conversion from gtk.Entry * src/AutoComp.py: unicode conversion from gtk.Entry * src/ChooseParents.py: unicode conversion from gtk.Entry * src/DateEdit.py: unicode conversion from gtk.Entry * src/EditPerson.py: unicode conversion from gtk.Entry * src/EditPlace.py: unicode conversion from gtk.Entry * src/EditSource.py: unicode conversion from gtk.Entry * src/EventEdit.py: unicode conversion from gtk.Entry * src/Find.py: unicode conversion from gtk.Entry * src/GrampsCfg.py: unicode conversion from gtk.Entry * src/ImageSelect.py: unicode conversion from gtk.Entry * src/LocEdit.py: unicode conversion from gtk.Entry * src/Marriage.py: unicode conversion from gtk.Entry * src/MergeData.py: unicode conversion from gtk.Entry * src/NameEdit.py: unicode conversion from gtk.Entry * src/PeopleView.py: unicode conversion from gtk.Entry * src/Report.py: unicode conversion from gtk.Entry * src/SelectChild.py: unicode conversion from gtk.Entry * src/Sources.py: unicode conversion from gtk.Entry * src/StartupDialog.py: unicode conversion from gtk.Entry * src/StyleEditor.py: unicode conversion from gtk.Entry * src/UrlEdit.py: unicode conversion from gtk.Entry * src/Utils.py: unicode conversion from gtk.Entry * src/VersionControl.py: unicode conversion from gtk.Entry * src/Witness.py: unicode conversion from gtk.Entry svn: r2534
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()
note = unicode(buf.get_text(buf.get_start_iter(),buf.get_end_iter(),False))
format = self.preform.get_active()
2002-10-20 19:55:16 +05:30
priv = self.priv.get_active()
if not attr 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)
self.alist.append(attr)
self.alist.sort()
2002-10-20 19:55:16 +05:30
if self.attrib == None:
self.attrib = RelLib.Attribute()
2002-10-20 19:55:16 +05:30
self.parent.alist.append(self.attrib)
self.attrib.set_source_reference_list(self.srcreflist)
self.update(attr,value,note,format,priv)
self.callback(self.attrib)
2004-02-20 06:45:37 +05:30
self.close(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)
self.parent.lists_changed = 1
def update(self,attr,value,note,format,priv):
2002-10-20 19:55:16 +05:30
"""Compares the data items, and updates if necessary"""
ntype = const.save_pattr(attr)
self.check(self.attrib.get_type,self.attrib.set_type,ntype)
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
def on_switch_page(self,obj,a,page):
buf = self.note_field.get_buffer()
text = unicode(buf.get_text(buf.get_start_iter(),buf.get_end_iter(),False))
if text:
Utils.bold_label(self.notes_label)
else:
Utils.unbold_label(self.notes_label)