|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/CondaInterface/CondaExecDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.0 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_CondaExecDialog(object): |
|
13 def setupUi(self, CondaExecDialog): |
|
14 CondaExecDialog.setObjectName("CondaExecDialog") |
|
15 CondaExecDialog.resize(750, 600) |
|
16 CondaExecDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout_3 = QtWidgets.QVBoxLayout(CondaExecDialog) |
|
18 self.verticalLayout_3.setObjectName("verticalLayout_3") |
|
19 self.messagesGroup = QtWidgets.QGroupBox(parent=CondaExecDialog) |
|
20 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) |
|
21 sizePolicy.setHorizontalStretch(0) |
|
22 sizePolicy.setVerticalStretch(3) |
|
23 sizePolicy.setHeightForWidth(self.messagesGroup.sizePolicy().hasHeightForWidth()) |
|
24 self.messagesGroup.setSizePolicy(sizePolicy) |
|
25 self.messagesGroup.setObjectName("messagesGroup") |
|
26 self.verticalLayout = QtWidgets.QVBoxLayout(self.messagesGroup) |
|
27 self.verticalLayout.setObjectName("verticalLayout") |
|
28 self.contents = QtWidgets.QTextBrowser(parent=self.messagesGroup) |
|
29 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) |
|
30 sizePolicy.setHorizontalStretch(0) |
|
31 sizePolicy.setVerticalStretch(3) |
|
32 sizePolicy.setHeightForWidth(self.contents.sizePolicy().hasHeightForWidth()) |
|
33 self.contents.setSizePolicy(sizePolicy) |
|
34 self.contents.setObjectName("contents") |
|
35 self.verticalLayout.addWidget(self.contents) |
|
36 self.verticalLayout_3.addWidget(self.messagesGroup) |
|
37 self.progressLabel = QtWidgets.QLabel(parent=CondaExecDialog) |
|
38 self.progressLabel.setObjectName("progressLabel") |
|
39 self.verticalLayout_3.addWidget(self.progressLabel) |
|
40 self.progressBar = QtWidgets.QProgressBar(parent=CondaExecDialog) |
|
41 self.progressBar.setObjectName("progressBar") |
|
42 self.verticalLayout_3.addWidget(self.progressBar) |
|
43 self.errorGroup = QtWidgets.QGroupBox(parent=CondaExecDialog) |
|
44 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) |
|
45 sizePolicy.setHorizontalStretch(0) |
|
46 sizePolicy.setVerticalStretch(1) |
|
47 sizePolicy.setHeightForWidth(self.errorGroup.sizePolicy().hasHeightForWidth()) |
|
48 self.errorGroup.setSizePolicy(sizePolicy) |
|
49 self.errorGroup.setObjectName("errorGroup") |
|
50 self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.errorGroup) |
|
51 self.verticalLayout_2.setObjectName("verticalLayout_2") |
|
52 self.errors = QtWidgets.QTextBrowser(parent=self.errorGroup) |
|
53 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) |
|
54 sizePolicy.setHorizontalStretch(0) |
|
55 sizePolicy.setVerticalStretch(1) |
|
56 sizePolicy.setHeightForWidth(self.errors.sizePolicy().hasHeightForWidth()) |
|
57 self.errors.setSizePolicy(sizePolicy) |
|
58 self.errors.setObjectName("errors") |
|
59 self.verticalLayout_2.addWidget(self.errors) |
|
60 self.verticalLayout_3.addWidget(self.errorGroup) |
|
61 self.buttonBox = QtWidgets.QDialogButtonBox(parent=CondaExecDialog) |
|
62 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
63 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
64 self.buttonBox.setObjectName("buttonBox") |
|
65 self.verticalLayout_3.addWidget(self.buttonBox) |
|
66 |
|
67 self.retranslateUi(CondaExecDialog) |
|
68 self.buttonBox.accepted.connect(CondaExecDialog.accept) # type: ignore |
|
69 self.buttonBox.rejected.connect(CondaExecDialog.reject) # type: ignore |
|
70 QtCore.QMetaObject.connectSlotsByName(CondaExecDialog) |
|
71 CondaExecDialog.setTabOrder(self.contents, self.errors) |
|
72 |
|
73 def retranslateUi(self, CondaExecDialog): |
|
74 _translate = QtCore.QCoreApplication.translate |
|
75 CondaExecDialog.setWindowTitle(_translate("CondaExecDialog", "Conda Execution")) |
|
76 self.messagesGroup.setTitle(_translate("CondaExecDialog", "Messages")) |
|
77 self.contents.setWhatsThis(_translate("CondaExecDialog", "<b>conda Execution</b>\n" |
|
78 "<p>This shows the output of the conda command.</p>")) |
|
79 self.errorGroup.setTitle(_translate("CondaExecDialog", "Errors")) |
|
80 self.errors.setWhatsThis(_translate("CondaExecDialog", "<b>conda Execution</b>\n" |
|
81 "<p>This shows the errors of the conda command.</p>")) |