Sat, 14 Jan 2023 18:25:26 +0100
PDF Viewer
- finished 'Go to' functions
- started with 'Zoom' functions
# -*- coding: utf-8 -*- # Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a stretchable spacer widget. """ from PyQt6.QtWidgets import QWidget, QHBoxLayout class EricStretchableSpacer(QWidget): """ Class implementing a stretchable spacer widget. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget (defaults to None) @type QWidget (optional) """ super().__init__(parent) self.__layout = QHBoxLayout() self.__layout.setContentsMargins(0, 0, 0, 0) self.__layout.addStretch() self.setLayout(self.__layout)