# # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2000-2006 Donald N. Allingham # # 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$ """ 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 _ #------------------------------------------------------------------------- # # GTK/Gnome modules # #------------------------------------------------------------------------- import gtk.glade #------------------------------------------------------------------------- # # gramps modules # #------------------------------------------------------------------------- import GrampsDisplay import const import Utils import RelLib import Sources import DateEdit import DateHandler import DisplayState import Spell from WindowUtils import GladeIf from DisplayTabs import * #------------------------------------------------------------------------- # # AddressEditor class # #------------------------------------------------------------------------- class AddressEditor(DisplayState.ManagedWindow): """ Displays a dialog that allows the user to edit an address. """ def __init__(self, dbstate, uistate, track, addr, callback): """ 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 # Get the important widgets from the glade description self.top = gtk.glade.XML(const.gladeFile, "addr_edit","gramps") self.gladeif = GladeIf(self.top) self.window = self.top.get_widget("addr_edit") self.addr_start = self.top.get_widget("address_start") self.addr_start.set_editable(not self.db.readonly) self.street = self.top.get_widget("street") self.street.set_editable(not self.db.readonly) self.city = self.top.get_widget("city") self.city.set_editable(not self.db.readonly) self.state = self.top.get_widget("state") self.state.set_editable(not self.db.readonly) self.country = self.top.get_widget("country") self.country.set_editable(not self.db.readonly) self.postal = self.top.get_widget("postal") self.postal.set_editable(not self.db.readonly) self.phone = self.top.get_widget("phone") self.phone.set_editable(not self.db.readonly) self.priv = self.top.get_widget("priv") self.priv.set_sensitive(not self.db.readonly) title_label = self.top.get_widget("title") Utils.set_titles(self.window,title_label,_('Address Editor')) 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()) else: self.addr_date_obj = RelLib.Date() self.addr = RelLib.Address() date_stat = self.top.get_widget("date_stat") date_stat.set_sensitive(not self.db.readonly) self.date_check = DateEdit.DateEdit( self.addr_date_obj, self.addr_start, date_stat, self.window) self.gladeif.connect('addr_edit','delete_event',self.on_delete_event) self.gladeif.connect('button122','clicked',self.close_window) 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) def on_delete_event(self,obj,b): self.gladeif.close() self.close() def close_window(self,obj): self.gladeif.close() self.window.destroy() self.close() def build_menu_names(self,obj): return (_('Address'),_('Address Editor')) def on_help_clicked(self,obj): """Display the relevant portion of GRAMPS manual""" GrampsDisplay.help('adv-ad') def ok_clicked(self,obj): """ Called when the OK button is pressed. Gets data from the form and updates the Address data structure. """ date_obj = self.addr_date_obj 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)) 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) 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): """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) 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)