5 |
5 |
6 """ |
6 """ |
7 Module implementing the label to show the web site icon. |
7 Module implementing the label to show the web site icon. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import Qt, QPoint, QMimeData |
10 from PyQt6.QtCore import QMimeData, QPoint, Qt |
11 from PyQt6.QtGui import QDrag, QPixmap |
11 from PyQt6.QtGui import QDrag, QPixmap |
12 from PyQt6.QtWidgets import QLabel, QApplication |
12 from PyQt6.QtWidgets import QApplication, QLabel |
13 |
13 |
14 |
14 |
15 class FavIconLabel(QLabel): |
15 class FavIconLabel(QLabel): |
16 """ |
16 """ |
17 Class implementing the label to show the web site icon. |
17 Class implementing the label to show the web site icon. |