src/eric7/Preferences/Ui_ViewProfileSidebarsDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ViewProfileSidebarsDialog.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_ViewProfileSidebarsDialog(object):
13 def setupUi(self, ViewProfileSidebarsDialog):
14 ViewProfileSidebarsDialog.setObjectName("ViewProfileSidebarsDialog")
15 ViewProfileSidebarsDialog.resize(608, 177)
16 ViewProfileSidebarsDialog.setSizeGripEnabled(True)
17 self.gridLayout = QtWidgets.QGridLayout(ViewProfileSidebarsDialog)
18 self.gridLayout.setObjectName("gridLayout")
19 self.textLabel1 = QtWidgets.QLabel(parent=ViewProfileSidebarsDialog)
20 self.textLabel1.setAlignment(QtCore.Qt.AlignmentFlag.AlignVCenter)
21 self.textLabel1.setObjectName("textLabel1")
22 self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 2)
23 self.editGroup = QtWidgets.QGroupBox(parent=ViewProfileSidebarsDialog)
24 self.editGroup.setObjectName("editGroup")
25 self.verticalLayout = QtWidgets.QVBoxLayout(self.editGroup)
26 self.verticalLayout.setObjectName("verticalLayout")
27 self.epltCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
28 self.epltCheckBox.setChecked(True)
29 self.epltCheckBox.setObjectName("epltCheckBox")
30 self.verticalLayout.addWidget(self.epltCheckBox)
31 self.eprtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
32 self.eprtCheckBox.setChecked(True)
33 self.eprtCheckBox.setObjectName("eprtCheckBox")
34 self.verticalLayout.addWidget(self.eprtCheckBox)
35 self.ephtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup)
36 self.ephtCheckBox.setChecked(True)
37 self.ephtCheckBox.setObjectName("ephtCheckBox")
38 self.verticalLayout.addWidget(self.ephtCheckBox)
39 self.gridLayout.addWidget(self.editGroup, 1, 0, 1, 1)
40 self.debugGroup = QtWidgets.QGroupBox(parent=ViewProfileSidebarsDialog)
41 self.debugGroup.setObjectName("debugGroup")
42 self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.debugGroup)
43 self.verticalLayout_2.setObjectName("verticalLayout_2")
44 self.dpltCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
45 self.dpltCheckBox.setObjectName("dpltCheckBox")
46 self.verticalLayout_2.addWidget(self.dpltCheckBox)
47 self.dprtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
48 self.dprtCheckBox.setChecked(True)
49 self.dprtCheckBox.setObjectName("dprtCheckBox")
50 self.verticalLayout_2.addWidget(self.dprtCheckBox)
51 self.dphtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup)
52 self.dphtCheckBox.setChecked(True)
53 self.dphtCheckBox.setObjectName("dphtCheckBox")
54 self.verticalLayout_2.addWidget(self.dphtCheckBox)
55 self.gridLayout.addWidget(self.debugGroup, 1, 1, 1, 1)
56 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ViewProfileSidebarsDialog)
57 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
58 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
59 self.buttonBox.setObjectName("buttonBox")
60 self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2)
61
62 self.retranslateUi(ViewProfileSidebarsDialog)
63 self.buttonBox.accepted.connect(ViewProfileSidebarsDialog.accept) # type: ignore
64 self.buttonBox.rejected.connect(ViewProfileSidebarsDialog.reject) # type: ignore
65 QtCore.QMetaObject.connectSlotsByName(ViewProfileSidebarsDialog)
66 ViewProfileSidebarsDialog.setTabOrder(self.eprtCheckBox, self.epltCheckBox)
67 ViewProfileSidebarsDialog.setTabOrder(self.epltCheckBox, self.ephtCheckBox)
68 ViewProfileSidebarsDialog.setTabOrder(self.ephtCheckBox, self.dpltCheckBox)
69 ViewProfileSidebarsDialog.setTabOrder(self.dpltCheckBox, self.dprtCheckBox)
70 ViewProfileSidebarsDialog.setTabOrder(self.dprtCheckBox, self.dphtCheckBox)
71 ViewProfileSidebarsDialog.setTabOrder(self.dphtCheckBox, self.buttonBox)
72
73 def retranslateUi(self, ViewProfileSidebarsDialog):
74 _translate = QtCore.QCoreApplication.translate
75 ViewProfileSidebarsDialog.setWindowTitle(_translate("ViewProfileSidebarsDialog", "Configure View Profiles"))
76 self.textLabel1.setText(_translate("ViewProfileSidebarsDialog", "Select the windows, that should be visible, when the different profiles are active."))
77 self.editGroup.setTitle(_translate("ViewProfileSidebarsDialog", "&Edit Profile"))
78 self.epltCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Left Sidebar"))
79 self.eprtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Right Sidebar"))
80 self.ephtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Bottom Sidebar"))
81 self.debugGroup.setTitle(_translate("ViewProfileSidebarsDialog", "&Debug Profile"))
82 self.dpltCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Left Sidebar"))
83 self.dprtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Right Sidebar"))
84 self.dphtCheckBox.setText(_translate("ViewProfileSidebarsDialog", "Bottom Sidebar"))

eric ide

mercurial