18 |
18 |
19 from PyQt6.QtCore import pyqtSignal, QObject, QFile, QUrl, QIODevice |
19 from PyQt6.QtCore import pyqtSignal, QObject, QFile, QUrl, QIODevice |
20 from PyQt6.QtGui import QPixmap |
20 from PyQt6.QtGui import QPixmap |
21 from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply |
21 from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkRequest, QNetworkReply |
22 |
22 |
|
23 from eric7.EricGui import EricPixmapCache |
|
24 from eric7 import Globals, Preferences, Utilities |
|
25 from eric7.Globals import getConfig |
23 from eric7.EricWidgets import EricMessageBox |
26 from eric7.EricWidgets import EricMessageBox |
24 from eric7.EricWidgets.EricApplication import ericApp |
27 from eric7.EricWidgets.EricApplication import ericApp |
25 |
28 |
26 from eric7.EricNetwork.EricNetworkProxyFactory import proxyAuthenticationRequired |
29 from eric7.EricNetwork.EricNetworkProxyFactory import proxyAuthenticationRequired |
27 |
30 |
41 PluginLoadError, |
44 PluginLoadError, |
42 PluginActivationError, |
45 PluginActivationError, |
43 PluginModuleFormatError, |
46 PluginModuleFormatError, |
44 PluginClassFormatError, |
47 PluginClassFormatError, |
45 ) |
48 ) |
46 |
|
47 from eric7.EricGui import EricPixmapCache |
|
48 |
|
49 from eric7 import Globals, Preferences, Utilities |
|
50 |
|
51 from eric7.Globals import getConfig |
|
52 |
49 |
53 |
50 |
54 class PluginManager(QObject): |
51 class PluginManager(QObject): |
55 """ |
52 """ |
56 Class implementing the Plugin Manager. |
53 Class implementing the Plugin Manager. |