6 """ |
6 """ |
7 Module implementing a delegate for the special list widget for GreaseMonkey |
7 Module implementing a delegate for the special list widget for GreaseMonkey |
8 scripts. |
8 scripts. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt5.QtCore import Qt, QSize, QRect |
11 from PyQt6.QtCore import Qt, QSize, QRect |
12 from PyQt5.QtGui import QFontMetrics, QPalette, QFont |
12 from PyQt6.QtGui import QFontMetrics, QPalette, QFont |
13 from PyQt5.QtWidgets import QStyle, QStyledItemDelegate, QApplication |
13 from PyQt6.QtWidgets import QStyle, QStyledItemDelegate, QApplication |
14 from PyQt5.QtWidgets import QStyleOptionViewItem |
14 from PyQt6.QtWidgets import QStyleOptionViewItem |
15 |
15 |
16 import UI.PixmapCache |
16 import UI.PixmapCache |
17 import Globals |
17 import Globals |
18 |
18 |
19 |
19 |