From b1ce7f70143bda3cc3c0bdbedabf29ec57d74da2 Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Sat, 5 Feb 2011 17:46:43 +0000 Subject: [PATCH] Add new abstract methods to ReportOptions. Bug #4572 svn: r16581 --- src/gen/plug/report/_options.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/gen/plug/report/_options.py b/src/gen/plug/report/_options.py index c9da00ad8..5c87ed32a 100644 --- a/src/gen/plug/report/_options.py +++ b/src/gen/plug/report/_options.py @@ -2,7 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2004-2007 Donald N. Allingham -# Copyright (C) 2008 Gary Burton +# Copyright (C) 2008,2011 Gary Burton # Copyright (C) 2010 Jakim Friant # # This program is free software; you can redistribute it and/or modify @@ -789,6 +789,24 @@ class ReportOptions(_options.Options): """ 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