7 Module implementing a dialog starting a process and showing its output. |
7 Module implementing a dialog starting a process and showing its output. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QTimer, QProcess, pyqtSlot, Qt, QProcessEnvironment |
12 from PyQt6.QtCore import QProcess, QProcessEnvironment, Qt, QTimer, pyqtSlot |
13 from PyQt6.QtWidgets import QLineEdit, QDialog, QDialogButtonBox |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QLineEdit |
14 |
14 |
|
15 from eric7 import Preferences |
15 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
|
17 from eric7.Globals import strToQByteArray |
16 |
18 |
17 from .Ui_SvnDialog import Ui_SvnDialog |
19 from .Ui_SvnDialog import Ui_SvnDialog |
18 |
|
19 from eric7 import Preferences |
|
20 from eric7.Globals import strToQByteArray |
|
21 |
20 |
22 |
21 |
23 class SvnDialog(QDialog, Ui_SvnDialog): |
22 class SvnDialog(QDialog, Ui_SvnDialog): |
24 """ |
23 """ |
25 Class implementing a dialog starting a process and showing its output. |
24 Class implementing a dialog starting a process and showing its output. |