Add new abstract methods to ReportOptions. Bug #4572

svn: r16581
This commit is contained in:
Gary Burton 2011-02-05 17:46:43 +00:00
parent 5ad2680205
commit b1ce7f7014

View File

@ -2,7 +2,7 @@
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2004-2007 Donald N. Allingham # Copyright (C) 2004-2007 Donald N. Allingham
# Copyright (C) 2008 Gary Burton # Copyright (C) 2008,2011 Gary Burton
# Copyright (C) 2010 Jakim Friant # Copyright (C) 2010 Jakim Friant
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
@ -789,6 +789,24 @@ class ReportOptions(_options.Options):
""" """
self.handler.output = val self.handler.output = val
def init_selection(self, dbstate, uistate):
"""
Initialize selection options for GUI.
"""
pass
def save_selection(self):
"""
Move selection options to handler.
"""
pass
def build_selection(self):
"""
Move selection options to handler.
"""
pass
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
# MenuReportOptions # MenuReportOptions