Add date validation to filters

svn: r22905
This commit is contained in:
Nick Hall 2013-08-22 17:13:55 +00:00
parent b142062187
commit 72c2cff790
8 changed files with 86 additions and 6 deletions

View File

@ -72,6 +72,7 @@ from gramps.gen.display.name import displayer as _nd
from gramps.gen.utils.db import family_name
from gramps.gen.utils.string import confidence
from gramps.gen.constfunc import cuni
from ..widgets import DateEntry
#-------------------------------------------------------------------------
#
@ -553,6 +554,8 @@ class EditRule(ManagedWindow):
elif v == _('Confidence level:'):
t = MyList(list(map(str, list(range(5)))),
[confidence[i] for i in range(5)])
elif v == _('Date:'):
t = DateEntry(self.uistate, self.track)
else:
t = MyEntry()
tlist.append(t)

View File

@ -41,7 +41,7 @@ from gi.repository import Gtk
# GRAMPS modules
#
#-------------------------------------------------------------------------
from ...widgets import MonitoredMenu
from ...widgets import MonitoredMenu, DateEntry
from gramps.gen.lib import Citation
from .. import build_filter_model
from . import SidebarFilter
@ -63,7 +63,7 @@ class CitationSidebarFilter(SidebarFilter):
self.clicked_func = clicked
self.filter_id = Gtk.Entry()
self.filter_page = Gtk.Entry()
self.filter_date = Gtk.Entry()
self.filter_date = DateEntry(uistate, [])
self.filter_conf = Gtk.ComboBox()
model = Gtk.ListStore(str)

View File

@ -72,7 +72,7 @@ class EventSidebarFilter(SidebarFilter):
self.filter_event.get_type)
self.filter_mainparts = widgets.BasicEntry()
self.filter_date = widgets.BasicEntry()
self.filter_date = widgets.DateEntry(uistate, [])
self.filter_place = widgets.BasicEntry()
self.filter_note = widgets.BasicEntry()

View File

@ -64,7 +64,7 @@ class MediaSidebarFilter(SidebarFilter):
self.filter_title = widgets.BasicEntry()
self.filter_type = widgets.BasicEntry()
self.filter_path = widgets.BasicEntry()
self.filter_date = widgets.BasicEntry()
self.filter_date = widgets.DateEntry(uistate, [])
self.filter_note = widgets.BasicEntry()
self.filter_regex = Gtk.CheckButton(_('Use regular expressions'))

View File

@ -76,8 +76,8 @@ class PersonSidebarFilter(SidebarFilter):
self.clicked_func = clicked
self.filter_name = widgets.BasicEntry()
self.filter_id = widgets.BasicEntry()
self.filter_birth = widgets.BasicEntry()
self.filter_death = widgets.BasicEntry()
self.filter_birth = widgets.DateEntry(uistate, [])
self.filter_death = widgets.DateEntry(uistate, [])
self.filter_event = Event()
self.filter_event.set_type((EventType.CUSTOM, ''))
self.etype = Gtk.ComboBox(has_entry=True)

View File

@ -25,6 +25,7 @@
from .basicentry import *
from .buttons import *
from .dateentry import *
from .expandcollapsearrow import *
from .labels import *
from .linkbox import *

View File

@ -0,0 +1,75 @@
#
# Gramps - a GTK+/GNOME based genealogy program
#
# Copyright (C) 2013 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
__all__ = ["DateEntry"]
#-------------------------------------------------------------------------
#
# Standard python modules
#
#-------------------------------------------------------------------------
import logging
_LOG = logging.getLogger(".widgets.dateentry")
#-------------------------------------------------------------------------
#
# GTK/Gnome modules
#
#-------------------------------------------------------------------------
from gi.repository import Gtk
#-------------------------------------------------------------------------
#
# Gramps modules
#
#-------------------------------------------------------------------------
from .monitoredwidgets import MonitoredDate
from .validatedmaskedentry import ValidatableMaskedEntry
from gramps.gen.lib.date import Date
#-------------------------------------------------------------------------
#
# DateEntry class
#
#-------------------------------------------------------------------------
class DateEntry(Gtk.HBox):
def __init__(self, uistate, track):
Gtk.HBox.__init__(self)
self.entry = ValidatableMaskedEntry()
self.pack_start(self.entry, True, True, 0)
image = Gtk.Image()
image.set_from_stock('gramps-date-edit', Gtk.IconSize.BUTTON)
button = Gtk.Button()
button.set_image(image)
button.set_relief(Gtk.ReliefStyle.NORMAL)
self.pack_start(button, False, True, 0)
self.date = Date()
self.date_entry = MonitoredDate(self.entry, button, self.date,
uistate, track)
self.show_all()
def get_text(self):
return self.entry.get_text()
def set_text(self, text):
self.entry.set_text(text)

View File

@ -367,6 +367,7 @@ gramps/gui/views/treemodels/sourcemodel.py
#
gramps/gui/widgets/__init__.py
gramps/gui/widgets/basicentry.py
gramps/gui/widgets/dateentry.py
gramps/gui/widgets/fanchartdesc.py
gramps/gui/widgets/linkbox.py
gramps/gui/widgets/menuitem.py