src/eric7/Preferences/ConfigurationPages/PdfViewerPage.py

Fri, 20 Jan 2023 17:05:46 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 20 Jan 2023 17:05:46 +0100
branch
pdf_viewer
changeset 9712
24bdc37413dd
child 9722
63135ab601e7
permissions
-rw-r--r--

PDF Viewer
- added the configuration dialog

# -*- coding: utf-8 -*-

# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing the PDF Viewer configuration page.
"""

from eric7 import Preferences

from .ConfigurationPageBase import ConfigurationPageBase
from .Ui_PdfViewerPage import Ui_PdfViewerPage


class PdfViewerPage(ConfigurationPageBase, Ui_PdfViewerPage):
    """
    Class implementing the PDF Viewer configuration page.
    """

    def __init__(self):
        """
        Constructor

        @param parent reference to the parent widget (defaults to None)
        @type QWidget (optional)
        """
        super().__init__()
        self.setupUi(self)
        self.setObjectName("PdfViewerPage")

        # set initial values
        self.contextLengthSpinBox.setValue(
            Preferences.getPdfViewer("PdfSearchContextLength")
        )
        self.highlightCheckBox.setChecked(
            Preferences.getPdfViewer("PdfSearchHighlightAll")
        )
        self.recentFilesSpinBox.setValue(Preferences.getPdfViewer("RecentNumber"))

    def save(self):
        """
        Public slot to save the IRC configuration.
        """
        Preferences.setPdfViewer(
            "PdfSearchContextLength", self.contextLengthSpinBox.value()
        )
        Preferences.setPdfViewer(
            "PdfSearchHighlightAll", self.highlightCheckBox.isChecked()
        )
        Preferences.setPdfViewer("RecentNumber", self.recentFilesSpinBox.value())


def create(dlg):
    """
    Module function to create the configuration page.

    @param dlg reference to the configuration dialog
    @return reference to the instantiated page
    @rtype ConfigurationPageBase
    """
    page = PdfViewerPage()
    return page

eric ide

mercurial