Fri, 20 Jan 2023 17:05:46 +0100
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