2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2004-02-19 19:10:09 +05:30
|
|
|
# Copyright (C) 2000-2004 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
|
2005-01-01 09:57:15 +05:30
|
|
|
import NameDisplay
|
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
|
* 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
|
|
|
if name:
|
|
|
|
if self.parent.child_windows.has_key(name):
|
|
|
|
self.parent.child_windows[name].present(None)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.win_key = name
|
|
|
|
else:
|
|
|
|
self.win_key = self
|
2002-10-20 19:55:16 +05:30
|
|
|
self.name = name
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback = callback
|
* 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.child_windows = {}
|
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")
|
2004-09-29 07:36:46 +05:30
|
|
|
self.sort_as = self.top.get_widget("sort_as")
|
|
|
|
self.display_as = self.top.get_widget("display_as")
|
|
|
|
self.group_as = self.top.get_widget("group_as")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.title_field = self.top.get_widget("alt_title")
|
|
|
|
self.suffix_field = self.top.get_widget("alt_suffix")
|
2005-01-19 06:06:06 +05:30
|
|
|
self.patronymic_field = self.top.get_widget("patronymic")
|
2004-08-05 09:44:21 +05:30
|
|
|
self.combo = self.top.get_widget("alt_surname_list")
|
|
|
|
|
2004-08-13 10:04:07 +05:30
|
|
|
AutoComp.fill_combo(self.combo,self.parent.db.get_surname_list())
|
2004-08-23 21:52:38 +05:30
|
|
|
self.surname_field = self.combo.get_child()
|
2004-10-07 23:18:29 +05:30
|
|
|
self.prefix_field = self.top.get_widget("alt_prefix")
|
2004-08-05 09:44:21 +05:30
|
|
|
|
2004-08-23 21:52:38 +05:30
|
|
|
self.type_combo = self.top.get_widget("name_type")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.note_field = self.top.get_widget("alt_note")
|
|
|
|
self.slist = self.top.get_widget('slist')
|
|
|
|
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")
|
2004-09-29 07:36:46 +05:30
|
|
|
self.group_over = self.top.get_widget('group_over')
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-01-21 05:00:15 +05:30
|
|
|
types = const.NameTypesMap.get_values()
|
2002-10-20 19:55:16 +05:30
|
|
|
types.sort()
|
2004-08-23 21:52:38 +05:30
|
|
|
AutoComp.fill_combo(self.type_combo,types)
|
2005-01-08 05:50:42 +05:30
|
|
|
self.type_field = self.type_combo.get_child()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if self.name:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.srcreflist = self.name.get_source_references()
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.srcreflist = []
|
|
|
|
|
2005-01-08 05:50:42 +05:30
|
|
|
full_name = NameDisplay.displayer.display_name(name)
|
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 == ", ":
|
2004-09-29 07:36:46 +05:30
|
|
|
tmsg = _("Name Editor")
|
2003-06-03 08:24:56 +05:30
|
|
|
else:
|
2004-09-29 07:36:46 +05:30
|
|
|
tmsg = _("Name Editor for %s") % full_name
|
2003-03-06 11:42:51 +05:30
|
|
|
|
2004-09-29 07:36:46 +05:30
|
|
|
Utils.set_titles(self.window, alt_title, tmsg, _('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({
|
2004-09-29 07:36:46 +05:30
|
|
|
"on_help_name_clicked" : self.on_help_clicked,
|
|
|
|
"on_name_edit_ok_clicked" : self.on_name_edit_ok_clicked,
|
2004-02-20 00:45:27 +05:30
|
|
|
"on_name_edit_cancel_clicked" : self.close,
|
2004-09-29 07:36:46 +05:30
|
|
|
"on_name_edit_delete_event" : self.on_delete_event,
|
|
|
|
"on_group_over_toggled" : self.on_group_over_toggled,
|
|
|
|
"on_switch_page" : self.on_switch_page
|
2003-11-13 00:15:07 +05:30
|
|
|
})
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
if name != None:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.given_field.set_text(name.get_first_name())
|
|
|
|
self.surname_field.set_text(name.get_surname())
|
|
|
|
self.title_field.set_text(name.get_title())
|
|
|
|
self.suffix_field.set_text(name.get_suffix())
|
2004-10-07 23:18:29 +05:30
|
|
|
self.prefix_field.set_text(name.get_surname_prefix())
|
2004-08-23 21:52:38 +05:30
|
|
|
self.type_field.set_text(_(name.get_type()))
|
2005-01-19 06:06:06 +05:30
|
|
|
self.patronymic_field.set_text(name.get_patronymic())
|
2004-02-14 11:10:30 +05:30
|
|
|
self.priv.set_active(name.get_privacy())
|
|
|
|
if name.get_note():
|
2004-02-20 06:22:24 +05:30
|
|
|
self.note_buffer.set_text(name.get_note())
|
2003-11-13 00:15:07 +05:30
|
|
|
Utils.bold_label(self.notes_label)
|
2004-02-20 06:22:24 +05:30
|
|
|
if name.get_note_format() == 1:
|
2003-12-16 01:30:47 +05:30
|
|
|
self.preform.set_active(1)
|
2004-02-20 06:22:24 +05:30
|
|
|
else:
|
2003-12-16 01:30:47 +05:30
|
|
|
self.flowed.set_active(1)
|
2004-09-29 07:36:46 +05:30
|
|
|
self.display_as.set_active(name.get_display_as())
|
|
|
|
self.sort_as.set_active(name.get_display_as())
|
2004-10-01 00:02:56 +05:30
|
|
|
grp_as = name.get_group_as()
|
|
|
|
if grp_as:
|
|
|
|
self.group_as.set_text(name.get_group_as())
|
|
|
|
else:
|
|
|
|
self.group_as.set_text(name.get_surname())
|
2004-09-29 07:36:46 +05:30
|
|
|
else:
|
|
|
|
self.display_as.set_active(0)
|
|
|
|
self.sort_as.set_active(0)
|
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-10-01 00:02:56 +05:30
|
|
|
self.surname_field.connect('changed',self.update_group_as)
|
2004-02-20 06:22:24 +05:30
|
|
|
self.add_itself_to_menu()
|
|
|
|
self.window.show()
|
2004-02-20 00:45:27 +05:30
|
|
|
|
2004-10-01 00:02:56 +05:30
|
|
|
def update_group_as(self,obj):
|
|
|
|
if not self.group_over.get_active():
|
|
|
|
if self.name.get_group_as() != self.name.get_surname():
|
|
|
|
val = self.name.get_group_as()
|
|
|
|
else:
|
|
|
|
val = self.db.get_name_group_mapping(self.surname_field.get_text())
|
|
|
|
self.group_as.set_text(val)
|
|
|
|
|
2004-09-29 07:36:46 +05:30
|
|
|
def on_group_over_toggled(self,obj):
|
|
|
|
if obj.get_active():
|
|
|
|
self.group_as.set_sensitive(gtk.TRUE)
|
|
|
|
self.group_as.set_editable(gtk.TRUE)
|
|
|
|
else:
|
2004-10-01 00:02:56 +05:30
|
|
|
self.group_as.set_text(self.db.get_name_group_mapping(self.surname_field.get_text()))
|
2004-09-29 07:36:46 +05:30
|
|
|
self.group_as.set_sensitive(gtk.FALSE)
|
|
|
|
self.group_as.set_editable(gtk.FALSE)
|
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def on_delete_event(self,*obj):
|
2004-02-20 06:22:24 +05:30
|
|
|
self.close_child_windows()
|
|
|
|
self.remove_itself_from_menu()
|
2004-02-20 00:45:27 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def close(self,*obj):
|
2004-02-20 06:22:24 +05:30
|
|
|
self.close_child_windows()
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
self.window.destroy()
|
2004-02-20 00:45:27 +05:30
|
|
|
|
|
|
|
def close_child_windows(self):
|
* 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
|
|
|
for child_window in self.child_windows.values():
|
2004-02-20 06:22:24 +05:30
|
|
|
child_window.close(None)
|
* 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.child_windows = {}
|
2004-02-20 00:45:27 +05:30
|
|
|
|
|
|
|
def add_itself_to_menu(self):
|
* 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.parent.child_windows[self.win_key] = self
|
2004-02-20 06:22:24 +05:30
|
|
|
if not self.name:
|
|
|
|
label = _("New Name")
|
|
|
|
else:
|
|
|
|
label = self.name.get_name()
|
|
|
|
if not label.strip():
|
|
|
|
label = _("New Name")
|
|
|
|
label = "%s: %s" % (_('Alternate Name'),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:22:24 +05:30
|
|
|
self.menu_item = gtk.MenuItem(_('Name Editor'))
|
2004-02-20 00:45:27 +05:30
|
|
|
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 00:45:27 +05:30
|
|
|
|
|
|
|
def remove_itself_from_menu(self):
|
* 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
|
|
|
del self.parent.child_windows[self.win_key]
|
2004-02-20 00:45:27 +05:30
|
|
|
self.menu_item.destroy()
|
2004-02-25 08:50:53 +05:30
|
|
|
self.winsmenu.destroy()
|
2004-02-20 06:22:24 +05:30
|
|
|
self.parent_menu_item.destroy()
|
2004-02-20 00:45:27 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def present(self,*obj):
|
2004-02-20 00:45:27 +05:30
|
|
|
self.window.present()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def on_help_clicked(self,*obj):
|
2003-11-19 07:59:41 +05:30
|
|
|
"""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
|
|
|
|
2004-02-19 19:10:09 +05:30
|
|
|
def on_name_edit_ok_clicked(self,obj):
|
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())
|
2004-10-07 23:18:29 +05:30
|
|
|
prefix = unicode(self.prefix_field.get_text())
|
2003-12-17 10:53:16 +05:30
|
|
|
suffix = unicode(self.suffix_field.get_text())
|
2005-01-19 06:06:06 +05:30
|
|
|
patronymic = unicode(self.patronymic_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()
|
|
|
|
|
2004-08-23 21:52:38 +05:30
|
|
|
mtype = unicode(self.type_field.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
if const.NameTypesMap.has_value(mtype):
|
|
|
|
mtype = const.NameTypesMap.find_key(mtype)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-05-14 04:15:51 +05:30
|
|
|
mtype = "Also Known As"
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
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)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
self.name.set_source_reference_list(self.srcreflist)
|
2004-09-29 07:36:46 +05:30
|
|
|
|
2004-10-01 00:02:56 +05:30
|
|
|
grp_as = self.group_as.get_text()
|
|
|
|
srn = self.surname_field.get_text()
|
|
|
|
|
2004-09-29 07:36:46 +05:30
|
|
|
if self.name.get_display_as() != self.display_as.get_active():
|
|
|
|
self.name.set_display_as(self.display_as.get_active())
|
|
|
|
self.parent.lists_changed = 1
|
2004-10-07 23:18:29 +05:30
|
|
|
|
|
|
|
prefix = unicode(self.prefix_field.get_text())
|
|
|
|
if self.name.get_surname_prefix() != prefix:
|
|
|
|
self.name.set_surname_prefix(prefix)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-09-29 07:36:46 +05:30
|
|
|
if self.name.get_sort_as() != self.sort_as.get_active():
|
|
|
|
self.name.set_sort_as(self.sort_as.get_active())
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
|
|
|
if self.group_over.get_active() == gtk.FALSE:
|
2004-10-01 00:02:56 +05:30
|
|
|
self.name.set_group_as("")
|
2004-09-29 07:36:46 +05:30
|
|
|
self.parent.lists_changed = 1
|
2004-10-01 00:02:56 +05:30
|
|
|
elif self.name.get_group_as() != grp_as:
|
|
|
|
if grp_as not in self.db.get_name_group_keys():
|
|
|
|
from QuestionDialog import QuestionDialog2
|
|
|
|
q = QuestionDialog2(_("Group all people with the same name?"),
|
|
|
|
_("You have the choice of grouping all people with the "
|
|
|
|
"name of %(surname)s with the name of %(group_name)s, or "
|
|
|
|
"just mapping this particular name.") % {'surname' : srn, 'group_name':grp_as},
|
|
|
|
_("Group all"),
|
|
|
|
_("Group this name only"))
|
|
|
|
val = q.run()
|
|
|
|
if val:
|
|
|
|
self.name.set_group_as("")
|
|
|
|
self.db.set_name_group_mapping(srn,grp_as)
|
|
|
|
else:
|
|
|
|
self.name.set_group_as(grp_as)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2005-01-19 06:06:06 +05:30
|
|
|
self.update_name(first,last,suffix,patronymic,title,mtype,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)
|
2004-02-20 06:22:24 +05:30
|
|
|
self.close(obj)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-01-19 06:06:06 +05:30
|
|
|
def update_name(self,first,last,suffix,patronymic,title,type,note,format,priv):
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_first_name() != first:
|
|
|
|
self.name.set_first_name(first)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_surname() != last:
|
|
|
|
self.name.set_surname(last)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_suffix() != suffix:
|
|
|
|
self.name.set_suffix(suffix)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2005-01-19 06:06:06 +05:30
|
|
|
if self.name.get_patronymic() != patronymic:
|
|
|
|
self.name.set_patronymic(patronymic)
|
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_title() != title:
|
|
|
|
self.name.set_title(title)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_type() != type:
|
|
|
|
self.name.set_type(type)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_note() != note:
|
|
|
|
self.name.set_note(note)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_note_format() != format:
|
|
|
|
self.name.set_note_format(format)
|
2003-12-16 01:30:47 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.name.get_privacy() != priv:
|
|
|
|
self.name.set_privacy(priv)
|
2002-10-20 19:55:16 +05:30
|
|
|
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)
|