5 |
5 |
6 """ |
6 """ |
7 Module implementing an object to create a thumbnail image of a web site. |
7 Module implementing an object to create a thumbnail image of a web site. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSignal, QObject, QSize, Qt, QUrl, QTimer |
10 from PyQt6.QtCore import QObject, QSize, Qt, QTimer, QUrl, pyqtSignal |
11 from PyQt6.QtGui import QPixmap, QImage, QPainter |
11 from PyQt6.QtGui import QImage, QPainter, QPixmap |
12 from PyQt6.QtWebEngineWidgets import QWebEngineView |
12 from PyQt6.QtWebEngineWidgets import QWebEngineView |
13 |
13 |
14 |
14 |
15 class PageThumbnailer(QObject): |
15 class PageThumbnailer(QObject): |
16 """ |
16 """ |