gramps/src/Editors/_EditUrl.py

104 lines
3.7 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$
#-------------------------------------------------------------------------
#
# python modules
#
#-------------------------------------------------------------------------
from gettext import gettext as _
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
from gtk import glade
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
import const
import Config
2006-03-04 12:04:48 +05:30
from _EditSecondary import EditSecondary
from GrampsWidgets import MonitoredEntry, PrivacyButton, MonitoredDataType
2002-10-20 19:55:16 +05:30
#-------------------------------------------------------------------------
#
2006-03-03 09:59:02 +05:30
# EditUrl class
2002-10-20 19:55:16 +05:30
#
#-------------------------------------------------------------------------
2006-03-04 12:04:48 +05:30
class EditUrl(EditSecondary):
WIDTH_KEY = Config.URL_WIDTH
HEIGHT_KEY = Config.URL_HEIGHT
def __init__(self, dbstate, uistate, track, name, url, callback):
2006-03-04 12:04:48 +05:30
EditSecondary.__init__(self, dbstate, uistate, track,
url, callback)
def _local_init(self):
self.top = glade.XML(const.GLADE_FILE, "url_edit", "gramps")
self.jump = self.top.get_widget('jump')
self.set_window(self.top.get_widget("url_edit"),
self.top.get_widget("title"),
_('Internet Address Editor'))
def _connect_signals(self):
self.jump.connect('clicked', self.jump_to)
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 jump_to(self, obj):
if self.obj.get_path():
import GrampsDisplay
GrampsDisplay.url(self.obj.get_path())
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 = MonitoredDataType(self.top.get_widget("type"),
self.obj.set_type,
self.obj.get_type, self.db.readonly)
def build_menu_names(self, obj):
etitle =_('Internet Address Editor')
return (etitle, etitle)
def save(self,*obj):
self.callback(self.obj)
2006-04-24 04:13:36 +05:30
self.close()