installation fixes
svn: r6068
This commit is contained in:
97
src/Editors/_EditUrl.py
Normal file
97
src/Editors/_EditUrl.py
Normal file
@@ -0,0 +1,97 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2000-2005 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$
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# python modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
from gettext import gettext as _
|
||||
from cgi import escape
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# GTK/Gnome modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
import gtk.glade
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# gramps modules
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
import const
|
||||
import Utils
|
||||
import RelLib
|
||||
from _EditSecondary import EditSecondary
|
||||
|
||||
from GrampsWidgets import *
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# EditUrl class
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
class EditUrl(EditSecondary):
|
||||
|
||||
def __init__(self, dbstate, uistate, track, name, url, callback):
|
||||
|
||||
EditSecondary.__init__(self, dbstate, uistate, track,
|
||||
url, callback)
|
||||
|
||||
def _local_init(self):
|
||||
self.top = gtk.glade.XML(const.gladeFile, "url_edit","gramps")
|
||||
|
||||
self.define_top_level(self.top.get_widget("url_edit"),
|
||||
self.top.get_widget("title"),
|
||||
_('Internet Address Editor'))
|
||||
|
||||
def _connect_signals(self):
|
||||
self.define_cancel_button(self.top.get_widget('button125'))
|
||||
self.define_ok_button(self.top.get_widget('button124'),self.save)
|
||||
self.define_help_button(self.top.get_widget('button130'),'gramps-edit_complete')
|
||||
|
||||
def _setup_fields(self):
|
||||
self.des = MonitoredEntry(
|
||||
self.top.get_widget("url_des"), self.obj.set_description,
|
||||
self.obj.get_description, self.db.readonly)
|
||||
|
||||
self.addr = MonitoredEntry(
|
||||
self.top.get_widget("url_addr"), self.obj.set_path,
|
||||
self.obj.get_path, self.db.readonly)
|
||||
|
||||
self.priv = PrivacyButton(self.top.get_widget("priv"),
|
||||
self.obj, self.db.readonly)
|
||||
|
||||
self.type_sel = MonitoredType(
|
||||
self.top.get_widget("type"), self.obj.set_type,
|
||||
self.obj.get_type, dict(Utils.web_types), RelLib.Url.CUSTOM)
|
||||
|
||||
def build_menu_names(self,obj):
|
||||
etitle =_('Internet Address Editor')
|
||||
return (etitle, etitle)
|
||||
|
||||
def save(self,*obj):
|
||||
self.callback(self.obj)
|
||||
self.close_window()
|
||||
|
||||
Reference in New Issue
Block a user