141 lines
5.0 KiB
Python
141 lines
5.0 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
|
# Copyright (C) 2014-2015 Nick Hall
|
|
#
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# GTK/Gnome modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from gi.repository import Gtk
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Gramps modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from .editsecondary import EditSecondary
|
|
from ..glade import Glade
|
|
from ..widgets import MonitoredDate, MonitoredEntry
|
|
from ..dialog import ErrorDialog
|
|
from gramps.gen.errors import ValidationError
|
|
from gramps.gen.const import GRAMPS_LOCALE as glocale
|
|
_ = glocale.translation.gettext
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Constants
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
ISO_CODES = (
|
|
'aa', 'ab', 'ae', 'af', 'ak', 'am', 'an', 'ar', 'as', 'av', 'ay', 'az',
|
|
'ba', 'be', 'bg', 'bh', 'bi', 'bm', 'bn', 'bo', 'br', 'bs',
|
|
'ca', 'ce', 'ch', 'co', 'cr', 'cs', 'cu', 'cv', 'cy',
|
|
'da', 'de', 'dv', 'dz',
|
|
'ee', 'el', 'en', 'eo', 'es', 'et', 'eu',
|
|
'fa', 'ff', 'fi', 'fj', 'fo', 'fr', 'fy',
|
|
'ga', 'gd', 'gl', 'gn', 'gu', 'gv',
|
|
'ha', 'he', 'hi', 'ho', 'hr', 'ht', 'hu', 'hy', 'hz',
|
|
'ia', 'id', 'ie', 'ig', 'ii', 'ik', 'io', 'is', 'it', 'iu',
|
|
'ja', 'jv',
|
|
'ka', 'kg', 'ki', 'kj', 'kk', 'kl', 'km', 'kn', 'ko', 'kr', 'ks', 'ku', 'kv',
|
|
'kw', 'ky',
|
|
'la', 'lb', 'lg', 'li', 'ln', 'lo', 'lt', 'lu', 'lv',
|
|
'mg', 'mh', 'mi', 'mk', 'ml', 'mn', 'mr', 'ms', 'mt', 'my',
|
|
'na', 'nb', 'nd', 'ne', 'ng', 'nl', 'nn', 'no', 'nr', 'nv', 'ny',
|
|
'oc', 'oj', 'om', 'or', 'os',
|
|
'pa', 'pi', 'pl', 'ps', 'pt',
|
|
'qu',
|
|
'rm', 'rn', 'ro', 'ru', 'rw',
|
|
'sa', 'sc', 'sd', 'se', 'sg', 'si', 'sk', 'sl', 'sm', 'sn', 'so', 'sq', 'sr',
|
|
'ss', 'st', 'su', 'sv', 'sw',
|
|
'ta', 'te', 'tg', 'th', 'ti', 'tk', 'tl', 'tn', 'to', 'tr', 'ts', 'tt', 'tw',
|
|
'ty',
|
|
'ug', 'uk', 'ur', 'uz',
|
|
've', 'vi', 'vo',
|
|
'wa', 'wo',
|
|
'xh',
|
|
'yi', 'yo',
|
|
'za', 'zh', 'zu')
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# EditPlaceName class
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class EditPlaceName(EditSecondary):
|
|
"""
|
|
Displays a dialog that allows the user to edit a place name.
|
|
"""
|
|
def __init__(self, dbstate, uistate, track, pname, callback):
|
|
EditSecondary.__init__(self, dbstate, uistate, track, pname, callback)
|
|
|
|
def _local_init(self):
|
|
self.width_key = 'interface.place-name-width'
|
|
self.height_key = 'interface.place-name-height'
|
|
|
|
self.top = Glade()
|
|
self.set_window(self.top.toplevel,
|
|
self.top.get_object("title"),
|
|
_('Place Name Editor'))
|
|
|
|
def _setup_fields(self):
|
|
self.value = MonitoredEntry(
|
|
self.top.get_object("value"), self.obj.set_value,
|
|
self.obj.get_value, self.db.readonly)
|
|
|
|
self.date = MonitoredDate(
|
|
self.top.get_object("date_entry"),
|
|
self.top.get_object("date_stat"),
|
|
self.obj.get_date_object(),
|
|
self.uistate,
|
|
self.track,
|
|
self.db.readonly)
|
|
|
|
self.language = MonitoredEntry(
|
|
self.top.get_object("language"), self.obj.set_language,
|
|
self.obj.get_language, self.db.readonly)
|
|
self.language.connect("validate", self._validate_iso_code)
|
|
#force validation now with initial entry
|
|
self.top.get_object("language").validate(force=True)
|
|
|
|
def _validate_iso_code(self, widget, text):
|
|
if text not in ISO_CODES:
|
|
return ValidationError(_("Invalid ISO code"))
|
|
|
|
def _connect_signals(self):
|
|
self.define_help_button(self.top.get_object('help'))
|
|
self.define_cancel_button(self.top.get_object('cancel'))
|
|
self.define_ok_button(self.top.get_object('ok'),self.save)
|
|
|
|
def build_menu_names(self, obj):
|
|
return (_('Place Name'),_('Place Name Editor'))
|
|
|
|
def save(self, *obj):
|
|
if not self.obj.get_value():
|
|
ErrorDialog(_("Cannot save place name"),
|
|
_("The place name cannot be empty"),
|
|
parent=self.window)
|
|
return
|
|
|
|
if self.callback:
|
|
self.callback(self.obj)
|
|
self.close()
|