2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2005-05-11 19:34:47 +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-19 07:59:41 +05:30
|
|
|
# $Id$
|
|
|
|
|
2005-05-11 19:34:47 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
from gettext import gettext as _
|
2005-12-06 12:08:09 +05:30
|
|
|
import gc
|
|
|
|
from cgi import escape
|
2005-05-11 19:34:47 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GTK/Gnome modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import gtk.glade
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import const
|
|
|
|
import Utils
|
2003-01-10 10:51:32 +05:30
|
|
|
import RelLib
|
2005-12-06 12:08:09 +05:30
|
|
|
import GrampsDisplay
|
2005-12-24 05:39:04 +05:30
|
|
|
import DisplayState
|
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
from WindowUtils import GladeIf
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# UrlEditor class
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2005-12-24 05:39:04 +05:30
|
|
|
class UrlEditor(DisplayState.ManagedWindow):
|
|
|
|
|
|
|
|
def __init__(self, dbstate, uistate, track, name, url, callback):
|
|
|
|
|
|
|
|
self.db = dbstate.db
|
|
|
|
self.uistate = uistate
|
|
|
|
self.state = dbstate
|
|
|
|
self.callback = callback
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
DisplayState.ManagedWindow.__init__(self, uistate, track, url)
|
|
|
|
if self.already_exist:
|
|
|
|
return
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.url = url
|
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, "url_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("url_edit")
|
|
|
|
self.des = self.top.get_widget("url_des")
|
|
|
|
self.addr = self.top.get_widget("url_addr")
|
|
|
|
self.priv = self.top.get_widget("priv")
|
2003-03-05 11:31:31 +05:30
|
|
|
title_label = self.top.get_widget("title")
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-05-11 19:34:47 +05:30
|
|
|
if not name or name == ", ":
|
2003-06-03 08:24:56 +05:30
|
|
|
etitle =_('Internet Address Editor')
|
|
|
|
else:
|
2005-12-24 05:39:04 +05:30
|
|
|
etitle =_('Internet Address Editor for %s') % escape(name)
|
2003-06-03 08:24:56 +05:30
|
|
|
|
|
|
|
|
|
|
|
Utils.set_titles(self.window,title_label, etitle,
|
2003-03-06 11:42:51 +05:30
|
|
|
_('Internet Address Editor'))
|
2002-10-20 19:55:16 +05:30
|
|
|
if url != None:
|
|
|
|
self.des.set_text(url.get_description())
|
|
|
|
self.addr.set_text(url.get_path())
|
2004-02-14 11:10:30 +05:30
|
|
|
self.priv.set_active(url.get_privacy())
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif.connect('url_edit','delete_event', self.on_delete_event)
|
|
|
|
self.gladeif.connect('button125','clicked', self.close)
|
|
|
|
self.gladeif.connect('button124','clicked', self.on_url_edit_ok_clicked)
|
|
|
|
self.gladeif.connect('button130','clicked', self.on_help_clicked)
|
2003-11-19 07:59:41 +05:30
|
|
|
|
2005-12-24 05:39:04 +05:30
|
|
|
self.window.set_transient_for(self.parent_window)
|
2004-02-20 07:01:04 +05:30
|
|
|
self.window.show()
|
|
|
|
|
2005-12-24 05:39:04 +05:30
|
|
|
def build_menu_names(self,obj):
|
|
|
|
if not self.name or self.name == ", ":
|
|
|
|
etitle =_('Internet Address Editor')
|
|
|
|
else:
|
|
|
|
etitle =_('Internet Address Editor for %s') % escape(self.name)
|
|
|
|
return (etitle, _('Internet Address Editor'))
|
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def on_delete_event(self,*obj):
|
2005-12-06 12:08:09 +05:30
|
|
|
self.gladeif.close()
|
|
|
|
gc.collect()
|
2004-02-20 07:01:04 +05:30
|
|
|
|
2004-05-14 04:15:51 +05:30
|
|
|
def close(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()
|
2005-12-06 12:08:09 +05:30
|
|
|
gc.collect()
|
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"""
|
2005-12-06 12:08:09 +05:30
|
|
|
GrampsDisplay.help('gramps-edit-complete')
|
2003-11-19 07:59:41 +05:30
|
|
|
|
2004-02-20 07:01:04 +05:30
|
|
|
def on_url_edit_ok_clicked(self,obj):
|
2003-12-17 10:53:16 +05:30
|
|
|
des = unicode(self.des.get_text())
|
|
|
|
addr = unicode(self.addr.get_text())
|
2002-10-20 19:55:16 +05:30
|
|
|
priv = self.priv.get_active()
|
|
|
|
|
|
|
|
self.update_url(des,addr,priv)
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback(self.url)
|
2004-02-20 07:01:04 +05:30
|
|
|
self.close(obj)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def update_url(self,des,addr,priv):
|
|
|
|
if self.url.get_path() != addr:
|
|
|
|
self.url.set_path(addr)
|
|
|
|
|
|
|
|
if self.url.get_description() != des:
|
|
|
|
self.url.set_description(des)
|
|
|
|
|
2004-02-14 11:10:30 +05:30
|
|
|
if self.url.get_privacy() != priv:
|
|
|
|
self.url.set_privacy(priv)
|
2005-12-24 05:39:04 +05:30
|
|
|
|