src/eric7/Preferences/Ui_ViewProfileSidebarsDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
diff -r 7aa41173b44b -r 5d3a5a05114e src/eric7/Preferences/Ui_ViewProfileSidebarsDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Preferences/Ui_ViewProfileSidebarsDialog.py	Fri Jun 07 10:05:06 2024 +0200
@@ -0,0 +1,84 @@
+# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ViewProfileSidebarsDialog.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_ViewProfileSidebarsDialog(object):
+    def setupUi(self, ViewProfileSidebarsDialog):
+        ViewProfileSidebarsDialog.setObjectName("ViewProfileSidebarsDialog")
+        ViewProfileSidebarsDialog.resize(608, 177)
+        ViewProfileSidebarsDialog.setSizeGripEnabled(True)
+        self.gridLayout = QtWidgets.QGridLayout(ViewProfileSidebarsDialog)
+        self.gridLayout.setObjectName("gridLayout")
+        self.textLabel1 = QtWidgets.QLabel(parent=ViewProfileSidebarsDialog)
+        self.textLabel1.setAlignment(QtCore.Qt.AlignmentFlag.AlignVCenter)
+        self.textLabel1.setObjectName("textLabel1")
+        self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 2)
+        self.editGroup = QtWidgets.QGroupBox(parent=ViewProfileSidebarsDialog)
+        self.editGroup.setObjectName("editGroup")
+        self.verticalLayout = QtWidgets.QVBoxLayout(self.editGroup)
+        self.verticalLayout.setObjectName("verticalLayout")
+        self.epltCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
+        self.epltCheckBox.setChecked(True)
+        self.epltCheckBox.setObjectName("epltCheckBox")
+        self.verticalLayout.addWidget(self.epltCheckBox)
+        self.eprtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
+        self.eprtCheckBox.setChecked(True)
+        self.eprtCheckBox.setObjectName("eprtCheckBox")
+        self.verticalLayout.addWidget(self.eprtCheckBox)
+        self.ephtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
+        self.ephtCheckBox.setChecked(True)
+        self.ephtCheckBox.setObjectName("ephtCheckBox")
+        self.verticalLayout.addWidget(self.ephtCheckBox)
+        self.gridLayout.addWidget(self.editGroup, 1, 0, 1, 1)
+        self.debugGroup = QtWidgets.QGroupBox(parent=ViewProfileSidebarsDialog)
+        self.debugGroup.setObjectName("debugGroup")
+        self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.debugGroup)
+        self.verticalLayout_2.setObjectName("verticalLayout_2")
+        self.dpltCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
+        self.dpltCheckBox.setObjectName("dpltCheckBox")
+        self.verticalLayout_2.addWidget(self.dpltCheckBox)
+        self.dprtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
+        self.dprtCheckBox.setChecked(True)
+        self.dprtCheckBox.setObjectName("dprtCheckBox")
+        self.verticalLayout_2.addWidget(self.dprtCheckBox)
+        self.dphtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
+        self.dphtCheckBox.setChecked(True)
+        self.dphtCheckBox.setObjectName("dphtCheckBox")
+        self.verticalLayout_2.addWidget(self.dphtCheckBox)
+        self.gridLayout.addWidget(self.debugGroup, 1, 1, 1, 1)
+        self.buttonBox = QtWidgets.QDialogButtonBox(parent=ViewProfileSidebarsDialog)
+        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
+        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
+        self.buttonBox.setObjectName("buttonBox")
+        self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2)
+
+        self.retranslateUi(ViewProfileSidebarsDialog)
+        self.buttonBox.accepted.connect(ViewProfileSidebarsDialog.accept) # type: ignore
+        self.buttonBox.rejected.connect(ViewProfileSidebarsDialog.reject) # type: ignore
+        QtCore.QMetaObject.connectSlotsByName(ViewProfileSidebarsDialog)
+        ViewProfileSidebarsDialog.setTabOrder(self.eprtCheckBox, self.epltCheckBox)
+        ViewProfileSidebarsDialog.setTabOrder(self.epltCheckBox, self.ephtCheckBox)
+        ViewProfileSidebarsDialog.setTabOrder(self.ephtCheckBox, self.dpltCheckBox)
+        ViewProfileSidebarsDialog.setTabOrder(self.dpltCheckBox, self.dprtCheckBox)
+        ViewProfileSidebarsDialog.setTabOrder(self.dprtCheckBox, self.dphtCheckBox)
+        ViewProfileSidebarsDialog.setTabOrder(self.dphtCheckBox, self.buttonBox)
+
+    def retranslateUi(self, ViewProfileSidebarsDialog):
+        _translate = QtCore.QCoreApplication.translate
+        ViewProfileSidebarsDialog.setWindowTitle(_translate("ViewProfileSidebarsDialog", "Configure View Profiles"))
+        self.textLabel1.setText(_translate("ViewProfileSidebarsDialog", "Select the windows, that should be visible, when the different profiles are active."))
+        self.editGroup.setTitle(_translate("ViewProfileSidebarsDialog", "&Edit Profile"))
+        self.epltCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Left Sidebar"))
+        self.eprtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Right Sidebar"))
+        self.ephtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Bottom Sidebar"))
+        self.debugGroup.setTitle(_translate("ViewProfileSidebarsDialog", "&Debug Profile"))
+        self.dpltCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Left Sidebar"))
+        self.dprtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Right Sidebar"))
+        self.dphtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Bottom Sidebar"))

eric ide

mercurial