""" Quoting section 8.2.2 "Document Outline" of the 2006 PDF spec 1.7: > The document outline consists of a tree-structured hierarchy of outline items (sometimes called bookmarks), > which serve as a visual table of contents to display the document’s structure to the user. The contents of this module are internal to fpdf2, and not part of the public API. They may change at any time without prior warning or any deprecation period, in non-backward-compatible ways. Usage documentation at: """ from dataclasses import dataclass from typing import TYPE_CHECKING, Any, Iterator, Optional, Sequence from .enums import Align, XPos, YPos from .fonts import TextStyle from .structure_tree import StructElem from .syntax import DestinationXYZ, PDFObject, PDFString from .util import FloatTolerance if TYPE_CHECKING: from .fpdf import FPDF @dataclass class OutlineSection: # RAM usage optimization __slots__ = ("name", "level", "page_number", "dest", "struct_elem") name: str level: int page_number: int dest: DestinationXYZ struct_elem: Optional[StructElem] def __init__( self, name: str, level: int, page_number: int, dest: DestinationXYZ, struct_elem: Optional[StructElem] = None, ) -> None: self.name = name self.level = level self.page_number = page_number self.dest = dest self.struct_elem = struct_elem class OutlineItemDictionary(PDFObject): __slots__ = ( # RAM usage optimization "_id", "title", "parent", "prev", "next", "first", "last", "count", "dest", "struct_elem", ) def __init__( self, title: str, dest: Optional[DestinationXYZ] = None, struct_elem: Optional[StructElem] = None, ) -> None: super().__init__() self.title = PDFString(title, encrypt=True) self.parent: Optional[OutlineDictionary | OutlineItemDictionary] = None self.prev: Optional[OutlineItemDictionary] = None self.next: Optional[OutlineItemDictionary] = None self.first: Optional[OutlineItemDictionary] = None self.last: Optional[OutlineItemDictionary] = None self.count: int = 0 self.dest: Optional[DestinationXYZ] = dest self.struct_elem: Optional[StructElem] = struct_elem def __str__(self) -> str: return f"OutlineItemDictionary(title={self.title}, dest={self.dest})" class OutlineDictionary(PDFObject): __slots__ = ("_id", "type", "first", "last", "count") # RAM usage optimization def __init__(self, **kwargs: Any) -> None: super().__init__(**kwargs) self.type = "/Outlines" self.first = None self.last = None self.count = 0 def __str__(self) -> str: return f"OutlineDictionary(count={self.count})" def build_outline_objs( sections: Sequence[OutlineSection], ) -> Iterator[OutlineDictionary | OutlineItemDictionary]: """ Build PDF objects constitutive of the documents outline, and yield them one by one, starting with the outline dictionary """ outline = OutlineDictionary() yield outline outline_items: list[OutlineItemDictionary] = [] last_outline_item_per_level: dict[int, OutlineItemDictionary] = {} parent_outline_item: OutlineDictionary | OutlineItemDictionary for section in sections: outline_item = OutlineItemDictionary( title=section.name, dest=section.dest, struct_elem=section.struct_elem, ) yield outline_item if section.level in last_outline_item_per_level: last_outline_item_at_level = last_outline_item_per_level[section.level] last_outline_item_at_level.next = outline_item outline_item.prev = last_outline_item_at_level if section.level - 1 in last_outline_item_per_level: parent_outline_item = last_outline_item_per_level[section.level - 1] else: parent_outline_item = outline outline_item.parent = parent_outline_item if parent_outline_item.first is None: parent_outline_item.first = ( # pyright: ignore[reportAttributeAccessIssue] outline_item ) parent_outline_item.last = ( # pyright: ignore[reportAttributeAccessIssue] outline_item ) parent_outline_item.count += 1 outline_items.append(outline_item) last_outline_item_per_level[section.level] = outline_item last_outline_item_per_level = { level: oitem for level, oitem in last_outline_item_per_level.items() if level <= section.level } class TableOfContents: """ A reference implementation of a Table of Contents (ToC) for use with `fpdf2`. This class provides a customizable Table of Contents that can be used directly or subclassed for additional functionality. To use this class, create an instance of `TableOfContents`, configure it as needed, and pass its `render_toc` method as the `render_toc_function` argument to `FPDF.insert_toc_placeholder()`. """ def __init__( self, text_style: Optional[TextStyle] = None, use_section_title_styles: bool = False, level_indent: float = 7.5, line_spacing: float = 1.5, ignore_pages_before_toc: bool = True, ) -> None: self.text_style = text_style or TextStyle() self.use_section_title_styles = use_section_title_styles self.level_indent = level_indent self.line_spacing = line_spacing self.ignore_pages_before_toc = ignore_pages_before_toc def get_text_style(self, pdf: "FPDF", item: OutlineSection) -> TextStyle: if self.use_section_title_styles and pdf.section_title_styles[item.level]: return pdf.section_title_styles[item.level] if isinstance(self.text_style.l_margin, (str, Align)): raise ValueError( f"Unsupported l_margin value provided as TextStyle: {self.text_style.l_margin}" ) return self.text_style def render_toc_item(self, pdf: "FPDF", item: OutlineSection) -> None: link = pdf.add_link(page=item.page_number) page_label = pdf.pages[item.page_number].get_label() # render the text on the left with pdf.use_text_style(self.get_text_style(pdf, item)): indent = item.level * self.level_indent pdf.set_x(pdf.l_margin + indent) pdf.multi_cell( w=pdf.epw - indent, text=item.name, new_x=XPos.END, new_y=YPos.LAST, link=link, align=Align.J, h=pdf.font_size * self.line_spacing, ) # fill in-between with dots clearance_margin = pdf.c_margin * 2 current_x = pdf.get_x() page_label_length = pdf.get_string_width(page_label) in_between_space = ( pdf.w - current_x - page_label_length - clearance_margin - pdf.r_margin ) if in_between_space < 0: # no space to render the page number - go to next line pdf.ln() pdf.set_x(pdf.l_margin + indent) current_x = pdf.get_x() in_between_space = pdf.w - current_x - page_label_length - pdf.r_margin in_between = "" if in_between_space > 0: while FloatTolerance.less_than( pdf.get_string_width(in_between) + clearance_margin, in_between_space, ): in_between += "." if len(in_between) > 1: pdf.multi_cell( w=pdf.w - current_x - pdf.r_margin, text=in_between[:-1], new_x=XPos.END, new_y=YPos.LAST, link=link, align=Align.L, h=pdf.font_size * self.line_spacing, ) # render the page number on the right pdf.set_x(current_x) pdf.multi_cell( w=pdf.w - current_x - pdf.r_margin, text=page_label, new_x=XPos.LMARGIN, new_y=YPos.NEXT, link=link, align=Align.R, h=pdf.font_size * self.line_spacing, ) def render_toc(self, pdf: "FPDF", outline: list[OutlineSection]) -> None: "This method can be overridden by subclasses to customize the Table of Contents style." assert pdf.toc_placeholder is not None for section in outline: if ( self.ignore_pages_before_toc and section.page_number <= pdf.toc_placeholder.start_page ): continue self.render_toc_item(pdf, section)