PipxInterface/ConfigurationPage/Ui_PipxPage.py

changeset 16
c06fb4cb120e
child 32
b7a3ae7519ba
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PipxInterface/ConfigurationPage/Ui_PipxPage.py	Fri Jun 28 17:19:26 2024 +0200
@@ -0,0 +1,70 @@
+# Form implementation generated from reading ui file 'PipxInterface/ConfigurationPage/PipxPage.ui'
+#
+# Created by: PyQt6 UI code generator 6.7.0
+#
+# WARNING: Any manual changes made to this file will be lost when pyuic6 is
+# run again.  Do not edit this file unless you know what you are doing.
+
+
+from PyQt6 import QtCore, QtGui, QtWidgets
+
+
+class Ui_PipxPage(object):
+    def setupUi(self, PipxPage):
+        PipxPage.setObjectName("PipxPage")
+        PipxPage.resize(548, 300)
+        self.verticalLayout_2 = QtWidgets.QVBoxLayout(PipxPage)
+        self.verticalLayout_2.setObjectName("verticalLayout_2")
+        self.headerLabel = QtWidgets.QLabel(parent=PipxPage)
+        self.headerLabel.setObjectName("headerLabel")
+        self.verticalLayout_2.addWidget(self.headerLabel)
+        self.line9_3 = QtWidgets.QFrame(parent=PipxPage)
+        self.line9_3.setFrameShape(QtWidgets.QFrame.Shape.HLine)
+        self.line9_3.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
+        self.line9_3.setFrameShape(QtWidgets.QFrame.Shape.HLine)
+        self.line9_3.setObjectName("line9_3")
+        self.verticalLayout_2.addWidget(self.line9_3)
+        self.groupBox_2 = QtWidgets.QGroupBox(parent=PipxPage)
+        self.groupBox_2.setObjectName("groupBox_2")
+        self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox_2)
+        self.verticalLayout.setObjectName("verticalLayout")
+        self.indexEdit = QtWidgets.QLineEdit(parent=self.groupBox_2)
+        self.indexEdit.setReadOnly(True)
+        self.indexEdit.setClearButtonEnabled(False)
+        self.indexEdit.setObjectName("indexEdit")
+        self.verticalLayout.addWidget(self.indexEdit)
+        self.indexLabel = QtWidgets.QLabel(parent=self.groupBox_2)
+        self.indexLabel.setWordWrap(True)
+        self.indexLabel.setObjectName("indexLabel")
+        self.verticalLayout.addWidget(self.indexLabel)
+        self.verticalLayout_2.addWidget(self.groupBox_2)
+        self.groupBox_7 = QtWidgets.QGroupBox(parent=PipxPage)
+        self.groupBox_7.setObjectName("groupBox_7")
+        self.hboxlayout = QtWidgets.QHBoxLayout(self.groupBox_7)
+        self.hboxlayout.setObjectName("hboxlayout")
+        self.label = QtWidgets.QLabel(parent=self.groupBox_7)
+        self.label.setObjectName("label")
+        self.hboxlayout.addWidget(self.label)
+        self.recentWorkdirsSpinBox = QtWidgets.QSpinBox(parent=self.groupBox_7)
+        self.recentWorkdirsSpinBox.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight|QtCore.Qt.AlignmentFlag.AlignTrailing|QtCore.Qt.AlignmentFlag.AlignVCenter)
+        self.recentWorkdirsSpinBox.setMinimum(5)
+        self.recentWorkdirsSpinBox.setMaximum(50)
+        self.recentWorkdirsSpinBox.setObjectName("recentWorkdirsSpinBox")
+        self.hboxlayout.addWidget(self.recentWorkdirsSpinBox)
+        spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
+        self.hboxlayout.addItem(spacerItem)
+        self.verticalLayout_2.addWidget(self.groupBox_7)
+        spacerItem1 = QtWidgets.QSpacerItem(20, 73, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
+        self.verticalLayout_2.addItem(spacerItem1)
+
+        self.retranslateUi(PipxPage)
+        QtCore.QMetaObject.connectSlotsByName(PipxPage)
+
+    def retranslateUi(self, PipxPage):
+        _translate = QtCore.QCoreApplication.translate
+        self.headerLabel.setText(_translate("PipxPage", "<b>Configure Python Application Management</b>"))
+        self.groupBox_2.setTitle(_translate("PipxPage", "Index URL"))
+        self.indexLabel.setText(_translate("PipxPage", "<b>Note</b>: The index URL is configured on the \'Python Package Management\' page."))
+        self.groupBox_7.setTitle(_translate("PipxPage", "Recent Application Working Directories"))
+        self.label.setText(_translate("PipxPage", "Number of recent working directories:"))
+        self.recentWorkdirsSpinBox.setToolTip(_translate("PipxPage", "Enter the number of recently used working directories  to remember"))

eric ide

mercurial