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
|
|
|
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
|
2006-02-02 03:27:11 +05:30
|
|
|
import AutoComp
|
2006-02-22 10:03:34 +05:30
|
|
|
from GrampsWidgets import *
|
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)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.url = url
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback = callback
|
2006-01-17 10:33:30 +05:30
|
|
|
self.top = gtk.glade.XML(const.gladeFile, "url_edit","gramps")
|
2005-12-06 12:08:09 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.window = self.top.get_widget("url_edit")
|
2006-02-02 03:27:11 +05:30
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
title_label = self.top.get_widget("title")
|
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
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
self._setup_fields()
|
|
|
|
self._connect_signals()
|
|
|
|
self.show()
|
2003-11-19 07:59:41 +05:30
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
def _connect_signals(self):
|
|
|
|
self.window.connect('delete_event', self.on_delete_event)
|
|
|
|
self.top.get_widget('button125').connect('clicked', self.close_window)
|
|
|
|
self.top.get_widget('button124').connect('clicked', self.ok_clicked)
|
|
|
|
self.top.get_widget('button130').connect('clicked', self.help_clicked)
|
|
|
|
|
|
|
|
def _setup_fields(self):
|
|
|
|
self.des = MonitoredEntry(
|
|
|
|
self.top.get_widget("url_des"), self.url.set_description,
|
|
|
|
self.url.get_description, self.db.readonly)
|
|
|
|
|
|
|
|
self.addr = MonitoredEntry(
|
|
|
|
self.top.get_widget("url_addr"), self.url.set_path,
|
|
|
|
self.url.get_path, self.db.readonly)
|
|
|
|
|
|
|
|
self.priv = PrivacyButton(self.top.get_widget("priv"),
|
|
|
|
self.url, self.db.readonly)
|
|
|
|
|
|
|
|
self.type_sel = MonitoredType(
|
|
|
|
self.top.get_widget("type"), self.url.set_type,
|
|
|
|
self.url.get_type, dict(Utils.web_types), RelLib.Url.CUSTOM)
|
|
|
|
|
2004-02-20 07:01:04 +05:30
|
|
|
|
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):
|
2006-02-02 03:27:11 +05:30
|
|
|
self.close()
|
2004-02-20 07:01:04 +05:30
|
|
|
|
2006-02-02 03:27:11 +05:30
|
|
|
def close_window(self,*obj):
|
|
|
|
self.close()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
def 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
|
|
|
|
2006-02-22 10:03:34 +05:30
|
|
|
def ok_clicked(self,obj):
|
2003-06-11 08:56:02 +05:30
|
|
|
self.callback(self.url)
|
2006-02-02 03:27:11 +05:30
|
|
|
self.close_window(obj)
|
2002-10-20 19:55:16 +05:30
|
|
|
|