src/eric7/WebBrowser/PageScreenDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9576
be9f8e7e42e0
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
7 Module implementing a dialog to save a screenshot of a web page. 7 Module implementing a dialog to save a screenshot of a web page.
8 """ 8 """
9 9
10 import pathlib 10 import pathlib
11 11
12 from PyQt6.QtCore import pyqtSlot, Qt, QSize 12 from PyQt6.QtCore import QSize, Qt, pyqtSlot
13 from PyQt6.QtGui import QImage, QPainter, QPixmap 13 from PyQt6.QtGui import QImage, QPainter, QPixmap
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton 14 from PyQt6.QtWidgets import QAbstractButton, QDialog, QDialogButtonBox
15 15
16 from eric7.EricWidgets import EricFileDialog, EricMessageBox 16 from eric7.EricWidgets import EricFileDialog, EricMessageBox
17 17
18 from .Ui_PageScreenDialog import Ui_PageScreenDialog 18 from .Ui_PageScreenDialog import Ui_PageScreenDialog
19 19

eric ide

mercurial