131 lines
5.2 KiB
Python
131 lines
5.2 KiB
Python
#
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2003-2006 Donald N. Allingham
|
|
# 2009 Gary Burton
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# internationalization
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from gramps.gen.const import GRAMPS_LOCALE as glocale
|
|
_ = glocale.translation.gettext
|
|
from gi.repository import Gdk
|
|
from gi.repository import Gtk
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# gramps modules
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
from ..views.treemodels import PeopleBaseModel, PersonTreeModel
|
|
from .baseselector import BaseSelector
|
|
from gramps.gui.display import display_help
|
|
from gramps.gen.const import URL_MANUAL_PAGE
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# Constants
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
# This dialog changes depending on the string pass for the title.
|
|
|
|
# https://gramps-project.org/wiki/index.php?title=Gramps_4.2_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_1#Select_Child_selector
|
|
WIKI_HELP_PAGE = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
|
WIKI_HELP_SEC = _('Select_Child_selector')
|
|
|
|
# https://gramps-project.org/wiki/index.php?title=Gramps_4.2_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_1#Select_Father_selector
|
|
WIKI_HELP_PAGE2 = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
|
WIKI_HELP_SEC2 = _('Select_Father_selector')
|
|
|
|
# https://gramps-project.org/wiki/index.php?title=Gramps_4.2_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_1#Select_Mother_selector
|
|
WIKI_HELP_PAGE3 = _('%s_-_Entering_and_editing_data:_detailed_-_part_1') % URL_MANUAL_PAGE
|
|
WIKI_HELP_SEC3 = _('Select_Mother_selector')
|
|
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# SelectEvent
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
class SelectPerson(BaseSelector):
|
|
|
|
def __init__(self, dbstate, uistate, track=[], title=None, filter=None,
|
|
skip=set(), show_search_bar=False, default=None):
|
|
|
|
# SelectPerson may have a title passed to it which should be used
|
|
# instead of the default defined for get_window_title()
|
|
if title is not None:
|
|
self.title = title
|
|
|
|
BaseSelector.__init__(self, dbstate, uistate, track, filter,
|
|
skip, show_search_bar, default)
|
|
|
|
def _local_init(self):
|
|
"""
|
|
Perform local initialisation for this class
|
|
"""
|
|
self.width_key = 'interface.person-sel-width'
|
|
self.height_key = 'interface.person-sel-height'
|
|
self.tree.connect('key-press-event', self._key_press)
|
|
|
|
def get_window_title(self):
|
|
return _("Select Person")
|
|
|
|
def get_model_class(self):
|
|
return PersonTreeModel
|
|
|
|
def get_column_titles(self):
|
|
return [
|
|
(_('Name'), 250, BaseSelector.TEXT, 0),
|
|
(_('ID'), 75, BaseSelector.TEXT, 1),
|
|
(_('Gender'), 75, BaseSelector.TEXT, 2),
|
|
(_('Birth Date'), 150, BaseSelector.MARKUP, 3),
|
|
(_('Birth Place'), 150, BaseSelector.MARKUP, 4),
|
|
(_('Death Date'), 150, BaseSelector.MARKUP, 5),
|
|
(_('Death Place'), 150, BaseSelector.MARKUP, 6),
|
|
(_('Spouse'), 150, BaseSelector.TEXT, 7),
|
|
(_('Last Change'), 150, BaseSelector.TEXT, 14)
|
|
]
|
|
|
|
def get_from_handle_func(self):
|
|
return self.db.get_person_from_handle
|
|
|
|
def exact_search(self):
|
|
"""
|
|
Returns a tuple indicating columns requiring an exact search
|
|
"""
|
|
return (2,) # Gender ('female' contains the string 'male')
|
|
|
|
def _on_row_activated(self, treeview, path, view_col):
|
|
store, paths = self.selection.get_selected_rows()
|
|
if paths and len(paths[0].get_indices()) == 2 :
|
|
self.window.response(Gtk.ResponseType.OK)
|
|
|
|
def _key_press(self, obj, event):
|
|
if event.keyval in (Gdk.KEY_Return, Gdk.KEY_KP_Enter):
|
|
store, paths = self.selection.get_selected_rows()
|
|
if paths and len(paths[0].get_indices()) == 1 :
|
|
if self.tree.row_expanded(paths[0]):
|
|
self.tree.collapse_row(paths[0])
|
|
else:
|
|
self.tree.expand_row(paths[0], 0)
|
|
return True
|
|
return False
|