11 import os |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import pyqtSlot |
13 from PyQt6.QtCore import pyqtSlot |
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
15 |
15 |
16 from eric7.EricWidgets import EricMessageBox |
|
17 |
|
18 from .Ui_InstallInfoDialog import Ui_InstallInfoDialog |
|
19 |
|
20 from eric7 import Globals |
16 from eric7 import Globals |
21 from eric7.EricGui import EricPixmapCache |
17 from eric7.EricGui import EricPixmapCache |
|
18 from eric7.EricWidgets import EricMessageBox |
|
19 |
|
20 from .Ui_InstallInfoDialog import Ui_InstallInfoDialog |
22 |
21 |
23 |
22 |
24 class InstallInfoDialog(QDialog, Ui_InstallInfoDialog): |
23 class InstallInfoDialog(QDialog, Ui_InstallInfoDialog): |
25 """ |
24 """ |
26 Class implementing a dialog to show information about the installation. |
25 Class implementing a dialog to show information about the installation. |