Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Mattkmmr
Last active February 10, 2022 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mattkmmr/3e3ce50a00ba235f5eb9a6223903feb0 to your computer and use it in GitHub Desktop.
Save Mattkmmr/3e3ce50a00ba235f5eb9a6223903feb0 to your computer and use it in GitHub Desktop.
Sorting by latest change - gramps/gui/selectors/selectcitation.py
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2003-2006 Donald N. Allingham
# 2009 Gary Burton
# Copyright (C) 2011 Tim G L Lyons, Nick Hall
# Copyright (C) 2022 Matthias Kemmer
#
# 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.
#
"""
SelectCitation class for Gramps.
"""
#-------------------------------------------------------------------------
#
# internationalization
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
#
# gramps modules
#
#-------------------------------------------------------------------------
from gramps.gen.const import GRAMPS_LOCALE as glocale
_ = glocale.translation.sgettext
from ..views.treemodels import CitationListModel
from .baseselector import BaseSelector
from gramps.gen.const import URL_MANUAL_SECT2
from gi.repository import Gtk
#-------------------------------------------------------------------------
#
# Constants
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
#
# SelectSource
#
#-------------------------------------------------------------------------
class SelectCitation(BaseSelector):
def _local_init(self):
"""
Perform local initialisation for this class
"""
self.setup_configs('interface.source-sel', 600, 450)
self.sort_col = 4
self.sortorder = Gtk.SortType.DESCENDING
def get_window_title(self):
return _("Select Source or Citation")
def get_model_class(self):
return CitationListModel
def get_column_titles(self):
return [
(_('Source: Title'), 150, BaseSelector.TEXT, 7),
(_('Source: Author'), 150, BaseSelector.TEXT, 9),
(_('Source: Title or Citation: Volume/Page'), 350, BaseSelector.TEXT, 0),
(_('ID'), 75, BaseSelector.TEXT, 1),
(_('Last Change'), 150, BaseSelector.TEXT, 6),
]
def get_from_handle_func(self):
return self.get_source_or_citation
def get_source_or_citation(self, handle):
if self.db.has_source_handle(handle):
return self.db.get_source_from_handle(handle)
else:
return self.db.get_citation_from_handle(handle)
WIKI_HELP_PAGE = URL_MANUAL_SECT2
WIKI_HELP_SEC = _('manual|Select_Source_or_Citation_selector')
@emyoulation
Copy link

Hi Matt.

Please add a 2022 copyright rev. line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment