10 import os.path |
10 import os.path |
11 |
11 |
12 from PyQt6.QtCore import QProcess, QTimer |
12 from PyQt6.QtCore import QProcess, QTimer |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
14 |
14 |
15 from EricWidgets import EricMessageBox |
15 from eric7.EricWidgets import EricMessageBox |
16 |
16 |
17 from .Ui_EricdocExecDialog import Ui_EricdocExecDialog |
17 from .Ui_EricdocExecDialog import Ui_EricdocExecDialog |
18 |
18 |
19 import Preferences |
19 from eric7 import Preferences |
20 |
20 |
21 |
21 |
22 class EricdocExecDialog(QDialog, Ui_EricdocExecDialog): |
22 class EricdocExecDialog(QDialog, Ui_EricdocExecDialog): |
23 """ |
23 """ |
24 Class implementing a dialog to show the output of the ericdoc process. |
24 Class implementing a dialog to show the output of the ericdoc process. |