gramps/src/AddrEdit.py

228 lines
8.0 KiB
Python
Raw Normal View History

2002-10-20 19:55:16 +05:30
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2000-2006 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
"""
The AddrEdit module provides the AddressEditor class. This provides a
mechanism for the user to edit address information.
"""
#-------------------------------------------------------------------------
#
# Python modules
#
#-------------------------------------------------------------------------
from gettext import gettext as _
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gtk.glade
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
2005-12-06 12:08:09 +05:30
import GrampsDisplay
2002-10-20 19:55:16 +05:30
import const
import Utils
import RelLib
import Sources
import DateEdit
import DateHandler
import DisplayState
import Spell
2002-10-20 19:55:16 +05:30
2005-12-06 12:08:09 +05:30
from WindowUtils import GladeIf
from DisplayTabs import *
2005-12-06 12:08:09 +05:30
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# AddressEditor class
#
#-------------------------------------------------------------------------
class AddressEditor(DisplayState.ManagedWindow):
2002-10-20 19:55:16 +05:30
"""
Displays a dialog that allows the user to edit an address.
"""
def __init__(self, dbstate, uistate, track, addr, callback):
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
"""
self.db = dbstate.db
self.uistate = uistate
self.dbstate = dbstate
self.callback = callback
self.addr = addr
DisplayState.ManagedWindow.__init__(self, uistate, track, addr)
if self.already_exist:
return
2002-10-20 19:55:16 +05:30
# Get the important widgets from the glade description
self.top = gtk.glade.XML(const.gladeFile, "addr_edit","gramps")
2005-12-06 12:08:09 +05:30
self.gladeif = GladeIf(self.top)
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")
2005-12-06 12:08:09 +05:30
self.addr_start.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.street = self.top.get_widget("street")
2005-12-06 12:08:09 +05:30
self.street.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.city = self.top.get_widget("city")
2005-12-06 12:08:09 +05:30
self.city.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.state = self.top.get_widget("state")
2005-12-06 12:08:09 +05:30
self.state.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.country = self.top.get_widget("country")
2005-12-06 12:08:09 +05:30
self.country.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.postal = self.top.get_widget("postal")
2005-12-06 12:08:09 +05:30
self.postal.set_editable(not self.db.readonly)
self.phone = self.top.get_widget("phone")
2005-12-06 12:08:09 +05:30
self.phone.set_editable(not self.db.readonly)
2002-10-20 19:55:16 +05:30
self.priv = self.top.get_widget("priv")
2005-12-06 12:08:09 +05:30
self.priv.set_sensitive(not self.db.readonly)
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
Utils.set_titles(self.window,title_label,_('Address Editor'))
2002-10-20 19:55:16 +05:30
if self.addr:
self.addr_date_obj = RelLib.Date(self.addr.get_date_object())
self.addr_start.set_text(DateHandler.get_date(self.addr))
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())
2002-10-20 19:55:16 +05:30
else:
self.addr_date_obj = RelLib.Date()
self.addr = RelLib.Address()
2002-10-20 19:55:16 +05:30
date_stat = self.top.get_widget("date_stat")
2005-12-06 12:08:09 +05:30
date_stat.set_sensitive(not self.db.readonly)
self.date_check = DateEdit.DateEdit(
self.addr_date_obj, self.addr_start, date_stat, self.window)
2002-10-20 19:55:16 +05:30
2005-12-06 12:08:09 +05:30
self.gladeif.connect('addr_edit','delete_event',self.on_delete_event)
self.gladeif.connect('button122','clicked',self.close_window)
2005-12-06 12:08:09 +05:30
self.gladeif.connect('button121','clicked',self.ok_clicked)
okbtn = self.top.get_widget('button121')
okbtn.set_sensitive(not self.db.readonly)
self.gladeif.connect('button129','clicked',self.on_help_clicked)
self._create_tabbed_pages()
self.show()
def _add_page(self,page):
self.notebook.insert_page(page)
self.notebook.set_tab_label(page,page.get_tab_widget())
return page
def _create_tabbed_pages(self):
"""
Creates the notebook tabs and inserts them into the main
window.
"""
vbox = self.top.get_widget('vbox')
self.notebook = gtk.Notebook()
self.srcref_list = self._add_page(SourceEmbedList(
self.dbstate,self.uistate, self.track,
self.addr.source_list))
self.note_tab = self._add_page(NoteTab(
self.dbstate, self.uistate, self.track,
self.addr.get_note_object()))
self.notebook.show_all()
vbox.pack_start(self.notebook,True)
2004-02-20 06:45:37 +05:30
def on_delete_event(self,obj,b):
2005-12-06 12:08:09 +05:30
self.gladeif.close()
self.close()
2004-02-20 06:45:37 +05:30
def close_window(self,obj):
2005-12-06 12:08:09 +05:30
self.gladeif.close()
* 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()
self.close()
2002-10-20 19:55:16 +05:30
def build_menu_names(self,obj):
return (_('Address'),_('Address Editor'))
2004-02-20 06:45:37 +05:30
def on_help_clicked(self,obj):
"""Display the relevant portion of GRAMPS manual"""
2005-12-06 12:08:09 +05:30
GrampsDisplay.help('adv-ad')
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.
"""
date_obj = self.addr_date_obj
* 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
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())
b = self.note_field.get_buffer()
note = unicode(b.get_text(b.get_start_iter(),b.get_end_iter(),False))
2002-10-20 19:55:16 +05:30
priv = self.priv.get_active()
self.addr.set_source_reference_list(self.srcreflist)
self.update(date_obj,street,city,state,country,postal,phone,priv)
self.callback(self.addr)
self.close_window(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)
def update(self,date_obj,street,city,state,country,postal,phone,priv):
2002-10-20 19:55:16 +05:30
"""Compares the data items, and updates if necessary"""
if not self.addr.get_date_object().is_equal(date_obj):
self.addr.set_date_object(date_obj)
2002-10-20 19:55:16 +05:30
self.check(self.addr.get_street,self.addr.set_street,street)
self.check(self.addr.get_country,self.addr.set_country,country)
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)