2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-03-11 06:42:06 +05:30
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2003-12-17 21:36:36 +05:30
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"Utilities/Generate SoundEx codes"
|
|
|
|
|
2005-03-25 09:04:52 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# standard python modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import os
|
2005-03-25 09:04:52 +05:30
|
|
|
from gettext import gettext as _
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-03-25 09:04:52 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GNOME/GTK modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import gtk
|
|
|
|
import gtk.glade
|
2005-12-13 07:37:16 +05:30
|
|
|
import GrampsDisplay
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-03-25 09:04:52 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
2002-10-20 19:55:16 +05:30
|
|
|
import soundex
|
|
|
|
import Utils
|
2003-03-17 10:51:40 +05:30
|
|
|
import AutoComp
|
2006-03-11 06:42:06 +05:30
|
|
|
from PluginUtils import Tool, register_tool
|
2003-03-17 10:51:40 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2005-12-06 12:08:09 +05:30
|
|
|
class SoundGen(Tool.Tool):
|
|
|
|
def __init__(self,db,person,options_class,name,callback=None,parent=None):
|
|
|
|
Tool.Tool.__init__(self,db,person,options_class,name)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-11 07:21:56 +05:30
|
|
|
self.parent = parent
|
2005-03-25 09:04:52 +05:30
|
|
|
if self.parent.child_windows.has_key(self.__class__):
|
|
|
|
self.parent.child_windows[self.__class__].present(None)
|
|
|
|
return
|
|
|
|
self.win_key = self.__class__
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
base = os.path.dirname(__file__)
|
|
|
|
glade_file = base + os.sep + "soundex.glade"
|
|
|
|
|
2003-08-17 07:44:33 +05:30
|
|
|
self.glade = gtk.glade.XML(glade_file,"soundEx","gramps")
|
2002-10-20 19:55:16 +05:30
|
|
|
self.glade.signal_autoconnect({
|
2004-05-11 07:21:56 +05:30
|
|
|
"destroy_passed_object" : self.close,
|
2005-03-25 09:04:52 +05:30
|
|
|
"on_help_clicked" : self.on_help_clicked,
|
2004-05-11 07:21:56 +05:30
|
|
|
"on_delete_event" : self.on_delete_event,
|
2002-10-20 19:55:16 +05:30
|
|
|
})
|
|
|
|
|
2004-05-11 07:21:56 +05:30
|
|
|
self.window = self.glade.get_widget("soundEx")
|
2005-03-25 09:04:52 +05:30
|
|
|
self.window.set_icon(self.parent.topWindow.get_icon())
|
2004-05-11 07:21:56 +05:30
|
|
|
Utils.set_titles(self.window,
|
2003-03-17 10:51:40 +05:30
|
|
|
self.glade.get_widget('title'),
|
|
|
|
_('SoundEx code generator'))
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
self.value = self.glade.get_widget("value")
|
2004-08-06 08:38:27 +05:30
|
|
|
self.autocomp = self.glade.get_widget("name_list")
|
|
|
|
self.name = self.autocomp.child
|
2003-03-23 01:56:44 +05:30
|
|
|
|
|
|
|
self.name.connect('changed',self.on_apply_clicked)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
names = []
|
2004-08-13 10:04:07 +05:30
|
|
|
for person_handle in self.db.get_person_handles(sort_handles=False):
|
2004-08-07 10:46:57 +05:30
|
|
|
person = self.db.get_person_from_handle(person_handle)
|
2004-02-14 11:10:30 +05:30
|
|
|
lastname = person.get_primary_name().get_surname()
|
2002-10-20 19:55:16 +05:30
|
|
|
if lastname not in names:
|
|
|
|
names.append(lastname)
|
|
|
|
|
|
|
|
names.sort()
|
2004-08-06 08:38:27 +05:30
|
|
|
|
|
|
|
AutoComp.fill_combo(self.autocomp, names)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
if person:
|
|
|
|
n = person.get_primary_name().get_surname()
|
2002-10-20 19:55:16 +05:30
|
|
|
self.name.set_text(n)
|
2004-02-06 01:23:02 +05:30
|
|
|
try:
|
|
|
|
se_text = soundex.soundex(n)
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
se_text = soundex.soundex('')
|
|
|
|
self.value.set_text(se_text)
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
|
|
|
self.name.set_text("")
|
|
|
|
|
2004-05-11 07:21:56 +05:30
|
|
|
self.add_itself_to_menu()
|
|
|
|
self.window.show()
|
|
|
|
|
2005-03-25 09:04:52 +05:30
|
|
|
def on_help_clicked(self,obj):
|
|
|
|
"""Display the relevant portion of GRAMPS manual"""
|
2005-12-13 07:37:16 +05:30
|
|
|
GrampsDisplay.help('tools-util-other')
|
2005-03-25 09:04:52 +05:30
|
|
|
|
2004-05-11 07:21:56 +05:30
|
|
|
def on_delete_event(self,obj,b):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
|
|
|
|
def close(self,obj):
|
|
|
|
self.remove_itself_from_menu()
|
|
|
|
self.window.destroy()
|
|
|
|
|
|
|
|
def add_itself_to_menu(self):
|
|
|
|
self.parent.child_windows[self.win_key] = self
|
|
|
|
self.parent_menu_item = gtk.MenuItem(_('SoundEx code generator tool'))
|
|
|
|
self.parent_menu_item.connect("activate",self.present)
|
|
|
|
self.parent_menu_item.show()
|
|
|
|
self.parent.winsmenu.append(self.parent_menu_item)
|
|
|
|
|
|
|
|
def remove_itself_from_menu(self):
|
|
|
|
del self.parent.child_windows[self.win_key]
|
|
|
|
self.parent_menu_item.destroy()
|
|
|
|
|
|
|
|
def present(self,obj):
|
|
|
|
self.window.present()
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
def on_apply_clicked(self,obj):
|
2004-02-06 01:23:02 +05:30
|
|
|
try:
|
|
|
|
se_text = soundex.soundex(unicode(obj.get_text()))
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
se_text = soundex.soundex('')
|
|
|
|
self.value.set_text(se_text)
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2005-12-06 12:08:09 +05:30
|
|
|
#------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
class SoundGenOptions(Tool.ToolOptions):
|
|
|
|
"""
|
|
|
|
Defines options and provides handling interface.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self,name,person_id=None):
|
|
|
|
Tool.ToolOptions.__init__(self,name,person_id)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
register_tool(
|
2005-12-06 12:08:09 +05:30
|
|
|
name = 'soundgen',
|
|
|
|
category = Tool.TOOL_UTILS,
|
|
|
|
tool_class = SoundGen,
|
|
|
|
options_class = SoundGenOptions,
|
|
|
|
modes = Tool.MODE_GUI,
|
|
|
|
translated_name = _("Generate SoundEx codes"),
|
|
|
|
status=(_("Stable")),
|
|
|
|
author_name = "Donald N. Allingham",
|
|
|
|
author_email = "don@gramps-project.org",
|
2002-10-20 19:55:16 +05:30
|
|
|
description=_("Generates SoundEx codes for names")
|
|
|
|
)
|