src/eric7/PdfViewer/PdfGoToDialog.py

branch
pdf_viewer
changeset 9722
63135ab601e7
parent 9699
92dcd34d54e4
child 10439
21c28b0f9e41
equal deleted inserted replaced
9714:2a3c6f6f88b6 9722:63135ab601e7
2 2
3 # Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de> 3 # Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
4 # 4 #
5 5
6 """ 6 """
7 7 Module implementing a dialog to enter a PDF page number to jump to.
8 """ 8 """
9 9
10 from PyQt6.QtCore import Qt 10 from PyQt6.QtCore import Qt
11 from PyQt6.QtWidgets import ( 11 from PyQt6.QtWidgets import (
12 QDialog, QDialogButtonBox, QSlider, QSpinBox, QHBoxLayout, QVBoxLayout 12 QDialog,
13 QDialogButtonBox,
14 QHBoxLayout,
15 QSlider,
16 QSpinBox,
17 QVBoxLayout,
13 ) 18 )
14 19
20
15 class PdfGoToDialog(QDialog): 21 class PdfGoToDialog(QDialog):
16 22 """
23 Class implementing a dialog to enter a PDF page number to jump to.
24 """
17 25
18 def __init__(self, curPage, pageCount, parent=None): 26 def __init__(self, curPage, pageCount, parent=None):
19 """ 27 """
20 Constructor 28 Constructor
21 29

eric ide

mercurial