5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to manage the list of unknown devices. |
7 Module implementing a dialog to manage the list of unknown devices. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QUrl, QUrlQuery |
10 from PyQt6.QtCore import Qt, QUrl, QUrlQuery, pyqtSlot |
11 from PyQt6.QtGui import QDesktopServices |
11 from PyQt6.QtGui import QDesktopServices |
12 from PyQt6.QtWidgets import QDialog, QListWidgetItem |
12 from PyQt6.QtWidgets import QDialog, QListWidgetItem |
13 |
13 |
|
14 from eric7 import Preferences |
14 from eric7.EricWidgets import EricMessageBox |
15 from eric7.EricWidgets import EricMessageBox |
|
16 from eric7.UI.Info import BugAddress |
15 |
17 |
16 from .Ui_UnknownDevicesDialog import Ui_UnknownDevicesDialog |
18 from .Ui_UnknownDevicesDialog import Ui_UnknownDevicesDialog |
17 |
|
18 from eric7 import Preferences |
|
19 from eric7.UI.Info import BugAddress |
|
20 |
19 |
21 |
20 |
22 class UnknownDevicesDialog(QDialog, Ui_UnknownDevicesDialog): |
21 class UnknownDevicesDialog(QDialog, Ui_UnknownDevicesDialog): |
23 """ |
22 """ |
24 Class implementing a dialog to manage the list of unknown devices. |
23 Class implementing a dialog to manage the list of unknown devices. |