2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-03-08 08:44:25 +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
|
|
|
"""
|
|
|
|
The AddrEdit module provides the AddressEditor class. This provides a
|
|
|
|
mechanism for the user to edit address information.
|
|
|
|
"""
|
|
|
|
|
2004-09-19 20:47:57 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk.glade
|
2003-11-18 09:56:06 +05:30
|
|
|
import gnome
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
|
|
|
import Date
|
|
|
|
import RelLib
|
|
|
|
import Sources
|
2004-09-18 09:28:30 +05:30
|
|
|
import DateEdit
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# AddressEditor class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class AddressEditor:
|
|
|
|
"""
|
|
|
|
Displays a dialog that allows the user to edit an address.
|
|
|
|
"""
|
2005-04-01 11:03:22 +05:30
|
|
|
def __init__(self,parent,addr,callback,parent_window=None):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Displays the dialog box.
|
|
|
|
|
|
|
|
parent - The class that called the Address editor.
|
|
|
|
addr - The address that is to be edited
|
|
|
|
"""
|
* 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 = parent
|
|
|
|
if addr:
|
|
|
|
if self.parent.child_windows.has_key(addr):
|
|
|
|
self.parent.child_windows[addr].present(None)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.win_key = addr
|
|
|
|
else:
|
|
|
|
self.win_key = self
|
|
|
|
self.db = self.parent.db
|
|
|
|
self.addr = addr
|
|
|
|
self.callback = callback
|
|
|
|
self.child_windows = {}
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
# Get the important widgets from the glade description
|
2003-08-17 07:44:33 +05:30
|
|
|
self.top = gtk.glade.XML(const.dialogFile, "addr_edit","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.window = self.top.get_widget("addr_edit")
|
|
|
|
self.addr_start = self.top.get_widget("address_start")
|
|
|
|
self.street = self.top.get_widget("street")
|
|
|
|
self.city = self.top.get_widget("city")
|
|
|
|
self.state = self.top.get_widget("state")
|
|
|
|
self.country = self.top.get_widget("country")
|
|
|
|
self.postal = self.top.get_widget("postal")
|
2003-12-09 11:30:51 +05:30
|
|
|
self.phone = self.top.get_widget("phone")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.note_field = self.top.get_widget("addr_note")
|
|
|
|
self.priv = self.top.get_widget("priv")
|
|
|
|
self.slist = self.top.get_widget("slist")
|
2003-11-13 00:15:07 +05:30
|
|
|
self.sources_label = self.top.get_widget("sourcesAddr")
|
|
|
|
self.notes_label = self.top.get_widget("noteAddr")
|
2003-12-16 01:30:47 +05:30
|
|
|
self.flowed = self.top.get_widget("addr_flowed")
|
|
|
|
self.preform = self.top.get_widget("addr_preform")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-03-05 11:31:31 +05:30
|
|
|
title_label = self.top.get_widget("title")
|
2003-03-06 11:42:51 +05:30
|
|
|
|
2005-01-16 09:30:35 +05:30
|
|
|
Utils.set_titles(self.window,title_label,_('Address Editor'))
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
if self.addr:
|
2004-02-14 11:10:30 +05:30
|
|
|
self.srcreflist = self.addr.get_source_references()
|
2004-09-19 20:47:57 +05:30
|
|
|
self.addr_date_obj = Date.Date(self.addr.get_date_object())
|
2004-02-14 11:10:30 +05:30
|
|
|
self.addr_start.set_text(self.addr.get_date())
|
|
|
|
self.street.set_text(self.addr.get_street())
|
|
|
|
self.city.set_text(self.addr.get_city())
|
|
|
|
self.state.set_text(self.addr.get_state())
|
|
|
|
self.country.set_text(self.addr.get_country())
|
|
|
|
self.postal.set_text(self.addr.get_postal_code())
|
|
|
|
self.phone.set_text(self.addr.get_phone())
|
|
|
|
self.priv.set_active(self.addr.get_privacy())
|
|
|
|
if self.addr.get_note():
|
|
|
|
self.note_field.get_buffer().set_text(self.addr.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 addr.get_note_format() == 1:
|
2003-12-16 01:30:47 +05:30
|
|
|
self.preform.set_active(1)
|
|
|
|
else:
|
|
|
|
self.flowed.set_active(1)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2004-09-19 20:47:57 +05:30
|
|
|
self.addr_date_obj = Date.Date()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.srcreflist = []
|
|
|
|
|
2005-02-27 11:21:59 +05:30
|
|
|
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'),
|
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
|
|
|
|
|
|
|
date_stat = self.top.get_widget("date_stat")
|
2005-02-27 11:21:59 +05:30
|
|
|
self.date_check = DateEdit.DateEdit(
|
|
|
|
self.addr_date_obj, self.addr_start, date_stat, self.window)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2003-11-13 00:15:07 +05:30
|
|
|
self.top.signal_autoconnect({
|
2003-11-18 09:56:06 +05:30
|
|
|
"on_switch_page" : self.on_switch_page,
|
2004-02-20 06:45:37 +05:30
|
|
|
"on_help_addr_clicked" : self.on_help_clicked,
|
|
|
|
"on_ok_addr_clicked" : self.ok_clicked,
|
|
|
|
"on_cancel_addr_clicked" : self.close,
|
|
|
|
"on_addr_edit_delete_event" : self.on_delete_event,
|
2003-11-13 00:15:07 +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()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-02-20 06:45:37 +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:45:37 +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 06:45:37 +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:45:37 +05:30
|
|
|
label = _('Address')
|
|
|
|
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(_('Address 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):
|
* 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 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()
|
|
|
|
|
2003-11-18 09:56:06 +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-18 09:56:06 +05:30
|
|
|
|
2004-02-20 06:45:37 +05:30
|
|
|
def 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 Address data structure.
|
|
|
|
"""
|
2004-09-19 20:47:57 +05:30
|
|
|
date_obj = self.addr_date_obj
|
2003-12-17 10:53:16 +05:30
|
|
|
street = unicode(self.street.get_text())
|
|
|
|
city = unicode(self.city.get_text())
|
|
|
|
state = unicode(self.state.get_text())
|
|
|
|
country = unicode(self.country.get_text())
|
|
|
|
phone = unicode(self.phone.get_text())
|
|
|
|
postal = unicode(self.postal.get_text())
|
2002-11-21 10:11:40 +05:30
|
|
|
b = self.note_field.get_buffer()
|
2005-02-24 05:55:34 +05:30
|
|
|
note = unicode(b.get_text(b.get_start_iter(),b.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()
|
|
|
|
|
|
|
|
if self.addr == None:
|
|
|
|
self.addr = RelLib.Address()
|
|
|
|
self.parent.plist.append(self.addr)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.addr.set_source_reference_list(self.srcreflist)
|
2002-11-21 10:11:40 +05:30
|
|
|
|
2004-09-19 20:47:57 +05:30
|
|
|
self.update(date_obj,street,city,state,country,postal,phone,note,format,priv)
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback(self.addr)
|
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
|
|
|
|
|
2004-09-19 20:47:57 +05:30
|
|
|
def update(self,date_obj,street,city,state,country,postal,phone,note,format,priv):
|
2002-10-20 19:55:16 +05:30
|
|
|
"""Compares the data items, and updates if necessary"""
|
|
|
|
|
2004-09-20 07:23:59 +05:30
|
|
|
if not self.addr.get_date_object().is_equal(date_obj):
|
2004-09-19 20:47:57 +05:30
|
|
|
self.addr.set_date_object(date_obj)
|
2002-10-20 19:55:16 +05:30
|
|
|
self.parent.lists_changed = 1
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
self.check(self.addr.get_street,self.addr.set_street,street)
|
2004-08-11 21:52:36 +05:30
|
|
|
self.check(self.addr.get_country,self.addr.set_country,country)
|
2004-02-14 11:10:30 +05:30
|
|
|
self.check(self.addr.get_city,self.addr.set_city,city)
|
|
|
|
self.check(self.addr.get_state,self.addr.set_state,state)
|
|
|
|
self.check(self.addr.get_postal_code,self.addr.set_postal_code,postal)
|
|
|
|
self.check(self.addr.get_phone,self.addr.set_phone,phone)
|
|
|
|
self.check(self.addr.get_note,self.addr.set_note,note)
|
|
|
|
self.check(self.addr.get_note_format,self.addr.set_note_format,format)
|
|
|
|
self.check(self.addr.get_privacy,self.addr.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):
|
|
|
|
buf = self.note_field.get_buffer()
|
2005-02-24 05:55:34 +05:30
|
|
|
text = unicode(buf.get_text(buf.get_start_iter(),buf.get_end_iter(),False))
|
2003-11-13 00:15:07 +05:30
|
|
|
if text:
|
|
|
|
Utils.bold_label(self.notes_label)
|
|
|
|
else:
|
|
|
|
Utils.unbold_label(self.notes_label)
|