#
# 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: _EditUrl.py 7804 2006-12-15 12:39:28Z LosHawlos $

#-------------------------------------------------------------------------
#
# python modules
#
#-------------------------------------------------------------------------
from gettext import gettext as _

#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
import gtk.glade

#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
import const
import Config
from _EditSecondary import EditSecondary

from GrampsWidgets import *

#-------------------------------------------------------------------------
#
# EditUrl class
#
#-------------------------------------------------------------------------
class EditUrl(EditSecondary):

    WIDTH_KEY = Config.URL_WIDTH
    HEIGHT_KEY = Config.URL_HEIGHT

    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.set_window(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 = 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)
        self.close()


syntax highlighted by Code2HTML, v. 0.9.1