00aa00fbf5
Only one base translation per locale. To set up a different locale on any axis (locale, domain, directory, or languages) instantiate a secondary locale by calling GrampsLocale() with the appropriate arguments. svn: r21968
126 lines
4.4 KiB
Python
126 lines
4.4 KiB
Python
# Gramps - a GTK+/GNOME based genealogy program
|
|
#
|
|
# Copyright (C) 2012 Nick Hall
|
|
# Copyright (C) 2012 Paul Franklin
|
|
#
|
|
# 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$
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Python modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
from gramps.gen.const import GRAMPS_LOCALE as glocale
|
|
_ = glocale.translation.sgettext
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# Gramps modules
|
|
#
|
|
#------------------------------------------------------------------------
|
|
from gramps.gen.plug.report import Report
|
|
from gramps.gen.plug.report import MenuReportOptions
|
|
from gramps.gen.plug.docgen import (FontStyle, ParagraphStyle, TableStyle,
|
|
TableCellStyle, FONT_SANS_SERIF,
|
|
IndexMark, INDEX_TYPE_TOC)
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# TableOfContents
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class TableOfContents(Report):
|
|
""" This report class generates a table of contents for a book. """
|
|
def __init__(self, database, options, user):
|
|
"""
|
|
Create TableOfContents object that produces the report.
|
|
|
|
The arguments are:
|
|
|
|
database - the GRAMPS database instance
|
|
options - instance of the Options class for this report
|
|
user - a gen.user.User() instance
|
|
"""
|
|
Report.__init__(self, database, options, user)
|
|
self._user = user
|
|
|
|
menu = options.menu
|
|
|
|
def write_report(self):
|
|
""" Generate the contents of the report """
|
|
mark = IndexMark(_("Table Of Contents"), INDEX_TYPE_TOC, 1)
|
|
self.doc.start_paragraph("TOC-Title")
|
|
self.doc.write_text('', mark)
|
|
self.doc.end_paragraph()
|
|
self.doc.insert_toc()
|
|
|
|
#------------------------------------------------------------------------
|
|
#
|
|
# TableOfContentsOptions
|
|
#
|
|
#------------------------------------------------------------------------
|
|
class TableOfContentsOptions(MenuReportOptions):
|
|
|
|
"""
|
|
Defines options and provides handling interface.
|
|
"""
|
|
|
|
def __init__(self, name, dbase):
|
|
self.__db = dbase
|
|
MenuReportOptions.__init__(self, name, dbase)
|
|
|
|
def add_menu_options(self, menu):
|
|
""" Add the options for this report """
|
|
pass
|
|
|
|
def make_default_style(self, default_style):
|
|
"""Make the default output style for the TableOfContents report."""
|
|
font = FontStyle()
|
|
font.set(face=FONT_SANS_SERIF, size=14)
|
|
para = ParagraphStyle()
|
|
para.set_font(font)
|
|
para.set_bottom_margin(0.25)
|
|
para.set_description(_('The style used for the title.'))
|
|
default_style.add_paragraph_style("TOC-Title", para)
|
|
|
|
table = TableStyle()
|
|
table.set_width(100)
|
|
table.set_columns(2)
|
|
table.set_column_width(0, 80)
|
|
table.set_column_width(1, 20)
|
|
default_style.add_table_style("TOC-Table", table)
|
|
|
|
cell = TableCellStyle()
|
|
default_style.add_cell_style("TOC-Cell", cell)
|
|
|
|
para = ParagraphStyle()
|
|
para.set_font(font)
|
|
para.set_description(_('The style used for first level headings.'))
|
|
default_style.add_paragraph_style("TOC-Heading1", para)
|
|
|
|
para = ParagraphStyle()
|
|
para.set_font(font)
|
|
para.set_first_indent(0.5)
|
|
para.set_description(_('The style used for second level headings.'))
|
|
default_style.add_paragraph_style("TOC-Heading2", para)
|
|
|
|
para = ParagraphStyle()
|
|
para.set_font(font)
|
|
para.set_first_indent(1)
|
|
para.set_description(_('The style used for third level headings.'))
|
|
default_style.add_paragraph_style("TOC-Heading3", para)
|