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
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk.glade
|
2003-11-19 07:59:41 +05:30
|
|
|
import gnome
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import AutoComp
|
|
|
|
import Sources
|
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
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# NameEditor class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class NameEditor:
|
|
|
|
|
* 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,name,callback,parent_window=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
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.name = name
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback = callback
|
2003-08-17 07:44:33 +05:30
|
|
|
self.top = gtk.glade.XML(const.dialogFile, "name_edit","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.window = self.top.get_widget("name_edit")
|
|
|
|
self.given_field = self.top.get_widget("alt_given")
|
|
|
|
self.title_field = self.top.get_widget("alt_title")
|
|
|
|
self.surname_field = self.top.get_widget("alt_last")
|
|
|
|
self.suffix_field = self.top.get_widget("alt_suffix")
|
|
|
|
self.type_field = self.top.get_widget("name_type")
|
|
|
|
self.note_field = self.top.get_widget("alt_note")
|
|
|
|
self.slist = self.top.get_widget('slist')
|
|
|
|
slist = self.top.get_widget("alt_surname_list")
|
|
|
|
self.combo = AutoComp.AutoCombo(slist,self.parent.db.getSurnames())
|
|
|
|
self.priv = self.top.get_widget("priv")
|
2003-11-13 00:15:07 +05:30
|
|
|
self.sources_label = self.top.get_widget("sourcesName")
|
|
|
|
self.notes_label = self.top.get_widget("noteName")
|
2003-12-16 01:30:47 +05:30
|
|
|
self.flowed = self.top.get_widget("alt_flowed")
|
|
|
|
self.preform = self.top.get_widget("alt_preform")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
types = const.NameTypesMap.keys()
|
|
|
|
types.sort()
|
|
|
|
self.type_field.set_popdown_strings(types)
|
|
|
|
self.typecomp = AutoComp.AutoEntry(self.type_field.entry,types)
|
|
|
|
|
|
|
|
if self.name:
|
|
|
|
self.srcreflist = self.name.getSourceRefList()
|
|
|
|
else:
|
|
|
|
self.srcreflist = []
|
|
|
|
|
|
|
|
full_name = parent.person.getPrimaryName().getName()
|
2003-03-03 10:02:53 +05:30
|
|
|
|
2003-03-05 11:31:31 +05:30
|
|
|
alt_title = self.top.get_widget("title")
|
2003-03-03 10:02:53 +05:30
|
|
|
|
2003-06-03 08:24:56 +05:30
|
|
|
if full_name == ", ":
|
|
|
|
tmsg = _("Alternate Name Editor")
|
|
|
|
else:
|
|
|
|
tmsg = _("Alternate Name Editor for %s") % full_name
|
2003-03-06 11:42:51 +05:30
|
|
|
|
|
|
|
Utils.set_titles(self.window, alt_title, tmsg, _('Alternate Name Editor'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
self.sourcetab = Sources.SourceTab(self.srcreflist, self,
|
2003-09-14 02:12:57 +05:30
|
|
|
self.top, 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'))
|
|
|
|
|
|
|
|
self.note_buffer = self.note_field.get_buffer()
|
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
self.top.signal_autoconnect({
|
2003-11-19 07:59:41 +05:30
|
|
|
"on_help_name_clicked" : self.on_help_clicked,
|
2003-11-13 00:15:07 +05:30
|
|
|
"on_switch_page" : self.on_switch_page
|
|
|
|
})
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if name != None:
|
|
|
|
self.given_field.set_text(name.getFirstName())
|
|
|
|
self.surname_field.set_text(name.getSurname())
|
|
|
|
self.title_field.set_text(name.getTitle())
|
|
|
|
self.suffix_field.set_text(name.getSuffix())
|
|
|
|
self.type_field.entry.set_text(_(name.getType()))
|
|
|
|
self.priv.set_active(name.getPrivacy())
|
2003-11-13 00:15:07 +05:30
|
|
|
if name.getNote():
|
2003-12-16 01:30:47 +05:30
|
|
|
self.note_buffer.set_text(name.getNote())
|
2003-11-13 00:15:07 +05:30
|
|
|
Utils.bold_label(self.notes_label)
|
2003-12-16 01:30:47 +05:30
|
|
|
if name.getNoteFormat() == 1:
|
|
|
|
self.preform.set_active(1)
|
|
|
|
else:
|
|
|
|
self.flowed.set_active(1)
|
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)
|
2003-11-19 07:59:41 +05:30
|
|
|
self.val = self.window.run()
|
|
|
|
if self.val == gtk.RESPONSE_OK:
|
* 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.on_name_edit_ok_clicked()
|
|
|
|
self.window.destroy()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-11-19 07:59:41 +05:30
|
|
|
def on_help_clicked(self,obj):
|
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2003-12-02 09:57:23 +05:30
|
|
|
gnome.help_display('gramps-manual','gramps-edit-complete')
|
2003-11-19 07:59:41 +05:30
|
|
|
self.val = self.window.run()
|
|
|
|
|
* 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_name_edit_ok_clicked(self):
|
2003-12-17 10:53:16 +05:30
|
|
|
first = unicode(self.given_field.get_text())
|
|
|
|
last = unicode(self.surname_field.get_text())
|
|
|
|
title = unicode(self.title_field.get_text())
|
|
|
|
suffix = unicode(self.suffix_field.get_text())
|
2003-12-17 21:36:36 +05:30
|
|
|
note = unicode(self.note_buffer.get_text(self.note_buffer.get_start_iter(),
|
|
|
|
self.note_buffer.get_end_iter(),gtk.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()
|
|
|
|
|
2003-12-17 10:53:16 +05:30
|
|
|
type = unicode(self.type_field.entry.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if const.NameTypesMap.has_key(type):
|
|
|
|
type = const.NameTypesMap[type]
|
|
|
|
else:
|
|
|
|
type = "Also Known As"
|
|
|
|
|
|
|
|
if self.name == None:
|
2003-01-10 10:51:32 +05:30
|
|
|
self.name = RelLib.Name()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.nlist.append(self.name)
|
|
|
|
|
|
|
|
self.name.setSourceRefList(self.srcreflist)
|
|
|
|
|
2003-12-16 01:30:47 +05:30
|
|
|
self.update_name(first,last,suffix,title,type,note,format,priv)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback(self.name)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-12-16 01:30:47 +05:30
|
|
|
def update_name(self,first,last,suffix,title,type,note,format,priv):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if self.name.getFirstName() != first:
|
|
|
|
self.name.setFirstName(first)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.name.getSurname() != last:
|
|
|
|
self.name.setSurname(last)
|
|
|
|
self.parent.db.addSurname(last)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.name.getSuffix() != suffix:
|
|
|
|
self.name.setSuffix(suffix)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.name.getTitle() != title:
|
|
|
|
self.name.setTitle(title)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.name.getType() != type:
|
|
|
|
self.name.setType(type)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.name.getNote() != note:
|
|
|
|
self.name.setNote(note)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2003-12-16 01:30:47 +05:30
|
|
|
if self.name.getNoteFormat() != format:
|
|
|
|
self.name.setNoteFormat(format)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if self.name.getPrivacy() != priv:
|
|
|
|
self.name.setPrivacy(priv)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
def on_switch_page(self,obj,a,page):
|
2003-12-17 21:36:36 +05:30
|
|
|
text = unicode(self.note_buffer.get_text(self.note_buffer.get_start_iter(),
|
|
|
|
self.note_buffer.get_end_iter(),gtk.FALSE))
|
2003-11-13 00:15:07 +05:30
|
|
|
if text:
|
|
|
|
Utils.bold_label(self.notes_label)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.notes_label)
|