|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ConfigurationPages/CondaPage.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_CondaPage(object): |
|
13 def setupUi(self, CondaPage): |
|
14 CondaPage.setObjectName("CondaPage") |
|
15 CondaPage.resize(585, 165) |
|
16 self.verticalLayout_2 = QtWidgets.QVBoxLayout(CondaPage) |
|
17 self.verticalLayout_2.setObjectName("verticalLayout_2") |
|
18 self.headerLabel = QtWidgets.QLabel(parent=CondaPage) |
|
19 self.headerLabel.setObjectName("headerLabel") |
|
20 self.verticalLayout_2.addWidget(self.headerLabel) |
|
21 self.line13 = QtWidgets.QFrame(parent=CondaPage) |
|
22 self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
23 self.line13.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) |
|
24 self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
25 self.line13.setObjectName("line13") |
|
26 self.verticalLayout_2.addWidget(self.line13) |
|
27 self.groupBox = QtWidgets.QGroupBox(parent=CondaPage) |
|
28 self.groupBox.setObjectName("groupBox") |
|
29 self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox) |
|
30 self.verticalLayout.setObjectName("verticalLayout") |
|
31 self.condaExePicker = EricPathPicker(parent=self.groupBox) |
|
32 self.condaExePicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus) |
|
33 self.condaExePicker.setObjectName("condaExePicker") |
|
34 self.verticalLayout.addWidget(self.condaExePicker) |
|
35 self.textLabel1_4 = QtWidgets.QLabel(parent=self.groupBox) |
|
36 self.textLabel1_4.setObjectName("textLabel1_4") |
|
37 self.verticalLayout.addWidget(self.textLabel1_4) |
|
38 self.verticalLayout_2.addWidget(self.groupBox) |
|
39 spacerItem = QtWidgets.QSpacerItem(20, 292, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
40 self.verticalLayout_2.addItem(spacerItem) |
|
41 |
|
42 self.retranslateUi(CondaPage) |
|
43 QtCore.QMetaObject.connectSlotsByName(CondaPage) |
|
44 |
|
45 def retranslateUi(self, CondaPage): |
|
46 _translate = QtCore.QCoreApplication.translate |
|
47 self.headerLabel.setText(_translate("CondaPage", "<b>Configure \"conda\" support</b>")) |
|
48 self.groupBox.setTitle(_translate("CondaPage", "conda Executable")) |
|
49 self.condaExePicker.setToolTip(_translate("CondaPage", "Enter the path to the conda executable.")) |
|
50 self.textLabel1_4.setText(_translate("CondaPage", "<b>Note:</b> Leave this entry empty to use the default value (conda or conda.exe).")) |
|
51 from eric7.EricWidgets.EricPathPicker import EricPathPicker |