13 import os.path |
13 import os.path |
14 |
14 |
15 from PyQt6.QtCore import pyqtSlot, QProcess, QTimer, QThread, pyqtSignal |
15 from PyQt6.QtCore import pyqtSlot, QProcess, QTimer, QThread, pyqtSignal |
16 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
16 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
17 |
17 |
18 from EricWidgets import EricMessageBox |
18 from eric7 import Preferences |
|
19 from eric7.EricWidgets import EricMessageBox |
19 |
20 |
20 from .Ui_CxfreezeExecDialog import Ui_CxfreezeExecDialog |
21 from .Ui_CxfreezeExecDialog import Ui_CxfreezeExecDialog |
21 |
|
22 import Preferences |
|
23 |
22 |
24 |
23 |
25 class CxfreezeExecDialog(QDialog, Ui_CxfreezeExecDialog): |
24 class CxfreezeExecDialog(QDialog, Ui_CxfreezeExecDialog): |
26 """ |
25 """ |
27 Class implementing a dialog to show the output of the cxfreeze process. |
26 Class implementing a dialog to show the output of the cxfreeze process. |