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 |