10 # |
10 # |
11 # This is modeled after the code found in Qupzilla |
11 # This is modeled after the code found in Qupzilla |
12 # Copyright (C) 2014 David Rosca <nowrep@gmail.com> |
12 # Copyright (C) 2014 David Rosca <nowrep@gmail.com> |
13 # |
13 # |
14 |
14 |
15 from PyQt6.QtCore import pyqtSlot, Qt, QPoint |
15 from PyQt6.QtCore import QPoint, Qt, pyqtSlot |
|
16 from PyQt6.QtWebEngineCore import QWebEngineSettings |
16 from PyQt6.QtWidgets import QGraphicsColorizeEffect, QMenu |
17 from PyQt6.QtWidgets import QGraphicsColorizeEffect, QMenu |
17 from PyQt6.QtWebEngineCore import QWebEngineSettings |
18 |
|
19 from eric7 import Preferences |
|
20 from eric7.EricGui import EricPixmapCache |
18 |
21 |
19 from .StatusBarIcon import StatusBarIcon |
22 from .StatusBarIcon import StatusBarIcon |
20 |
|
21 from eric7.EricGui import EricPixmapCache |
|
22 from eric7 import Preferences |
|
23 |
23 |
24 |
24 |
25 class ImagesIcon(StatusBarIcon): |
25 class ImagesIcon(StatusBarIcon): |
26 """ |
26 """ |
27 Class implementing the images loading status bar icon. |
27 Class implementing the images loading status bar icon. |