5 |
5 |
6 """ |
6 """ |
7 Module implementing the snapshot timer widget. |
7 Module implementing the snapshot timer widget. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSignal, Qt, QTimer, QRect |
10 from PyQt6.QtCore import QRect, Qt, QTimer, pyqtSignal |
11 from PyQt6.QtGui import QPainter, QPalette |
11 from PyQt6.QtGui import QPainter, QPalette |
12 from PyQt6.QtWidgets import QWidget, QApplication, QToolTip |
12 from PyQt6.QtWidgets import QApplication, QToolTip, QWidget |
13 |
13 |
14 |
14 |
15 class SnapshotTimer(QWidget): |
15 class SnapshotTimer(QWidget): |
16 """ |
16 """ |
17 Class implementing the snapshot timer widget. |
17 Class implementing the snapshot timer widget. |