2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2003-09-14 02:12:57 +05:30
|
|
|
# Copyright (C) 2000-2003 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
|
|
|
"""
|
|
|
|
The AttrEdit module provides the AddressEditor class. This provides a
|
|
|
|
mechanism for the user to edit address information.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = "Donald N. Allingham"
|
|
|
|
__version__ = "$Revision$"
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# 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
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AttributeEditor class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class AttributeEditor:
|
|
|
|
"""
|
|
|
|
Displays a dialog that allows the user to edit an attribute.
|
|
|
|
"""
|
* 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
|
|
|
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
|
2003-11-13 00:15:07 +05:30
|
|
|
self.db = self.parent.db
|
2002-10-20 19:55:16 +05:30
|
|
|
self.attrib = attrib
|
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.type_field = self.top.get_widget("attr_type")
|
|
|
|
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.source_field = self.top.get_widget("attr_source")
|
|
|
|
self.priv = self.top.get_widget("priv")
|
2003-11-13 00:15:07 +05:30
|
|
|
self.sources_label = self.top.get_widget("sourcesAttr")
|
|
|
|
self.notes_label = self.top.get_widget("noteAttr")
|
2003-06-11 08:24:57 +05:30
|
|
|
self.callback = callback
|
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.getSourceRefList()
|
|
|
|
else:
|
|
|
|
self.srcreflist = []
|
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
self.sourcetab = Sources.SourceTab(self.srcreflist,self,self.top,
|
2003-09-14 02:12:57 +05:30
|
|
|
self.window, self.slist,
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top.get_widget('add_src'),
|
2003-03-03 10:02:53 +05:30
|
|
|
self.top.get_widget('edit_src'),
|
2002-10-20 19:55:16 +05:30
|
|
|
self.top.get_widget('del_src'))
|
|
|
|
|
2003-06-03 08:24:56 +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
|
|
|
|
2003-03-23 01:56:44 +05:30
|
|
|
AutoComp.AutoCombo(self.attrib_menu,list)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if attrib != None:
|
|
|
|
self.type_field.set_text(attrib.getType())
|
|
|
|
self.value_field.set_text(attrib.getValue())
|
|
|
|
self.priv.set_active(attrib.getPrivacy())
|
|
|
|
|
|
|
|
self.note_field.get_buffer().set_text(attrib.getNote())
|
2003-11-13 00:15:07 +05:30
|
|
|
if attrib.getNote():
|
|
|
|
Utils.bold_label(self.notes_label)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
self.top.signal_autoconnect({
|
|
|
|
"on_add_src_clicked" : self.add_source,
|
|
|
|
"on_del_src_clicked" : self.del_source,
|
2003-11-13 00:15:07 +05:30
|
|
|
"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)
|
|
|
|
val = self.window.run()
|
|
|
|
if val == gtk.RESPONSE_OK:
|
|
|
|
self.on_ok_clicked()
|
|
|
|
self.window.destroy()
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
def add_source(self,obj):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def del_source(self,obj):
|
|
|
|
pass
|
|
|
|
|
* 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
|
|
|
def on_ok_clicked(self):
|
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.
|
|
|
|
"""
|
|
|
|
type = self.type_field.get_text()
|
|
|
|
value = self.value_field.get_text()
|
|
|
|
|
|
|
|
buf = self.note_field.get_buffer()
|
|
|
|
note = buf.get_text(buf.get_start_iter(),buf.get_end_iter(),gtk.FALSE)
|
|
|
|
priv = self.priv.get_active()
|
|
|
|
|
|
|
|
if self.attrib == None:
|
2003-01-10 10:51:32 +05:30
|
|
|
self.attrib = RelLib.Attribute()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.alist.append(self.attrib)
|
|
|
|
|
|
|
|
self.attrib.setSourceRefList(self.srcreflist)
|
|
|
|
self.update(type,value,note,priv)
|
2003-06-11 08:24:57 +05:30
|
|
|
self.callback(self.attrib)
|
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,type,value,note,priv):
|
|
|
|
"""Compares the data items, and updates if necessary"""
|
|
|
|
ntype = const.save_pattr(type)
|
|
|
|
self.check(self.attrib.getType,self.attrib.setType,ntype)
|
|
|
|
self.check(self.attrib.getValue,self.attrib.setValue,value)
|
|
|
|
self.check(self.attrib.getNote,self.attrib.setNote,note)
|
|
|
|
self.check(self.attrib.getPrivacy,self.attrib.setPrivacy,priv)
|
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
def on_switch_page(self,obj,a,page):
|
|
|
|
buf = self.note_field.get_buffer()
|
|
|
|
text = buf.get_text(buf.get_start_iter(),buf.get_end_iter(),gtk.FALSE)
|
|
|
|
if text:
|
|
|
|
Utils.bold_label(self.notes_label)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.notes_label)
|