|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ViewProfileToolboxesDialog.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_ViewProfileToolboxesDialog(object): |
|
13 def setupUi(self, ViewProfileToolboxesDialog): |
|
14 ViewProfileToolboxesDialog.setObjectName("ViewProfileToolboxesDialog") |
|
15 ViewProfileToolboxesDialog.resize(608, 177) |
|
16 ViewProfileToolboxesDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(ViewProfileToolboxesDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.textLabel1 = QtWidgets.QLabel(parent=ViewProfileToolboxesDialog) |
|
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=ViewProfileToolboxesDialog) |
|
24 self.editGroup.setObjectName("editGroup") |
|
25 self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.editGroup) |
|
26 self.verticalLayout_2.setObjectName("verticalLayout_2") |
|
27 self.epltCheckBox = QtWidgets.QCheckBox(parent=self.editGroup) |
|
28 self.epltCheckBox.setChecked(True) |
|
29 self.epltCheckBox.setObjectName("epltCheckBox") |
|
30 self.verticalLayout_2.addWidget(self.epltCheckBox) |
|
31 self.eprtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup) |
|
32 self.eprtCheckBox.setChecked(True) |
|
33 self.eprtCheckBox.setObjectName("eprtCheckBox") |
|
34 self.verticalLayout_2.addWidget(self.eprtCheckBox) |
|
35 self.ephtCheckBox = QtWidgets.QCheckBox(parent=self.editGroup) |
|
36 self.ephtCheckBox.setChecked(True) |
|
37 self.ephtCheckBox.setObjectName("ephtCheckBox") |
|
38 self.verticalLayout_2.addWidget(self.ephtCheckBox) |
|
39 self.gridLayout.addWidget(self.editGroup, 1, 0, 1, 1) |
|
40 self.debugGroup = QtWidgets.QGroupBox(parent=ViewProfileToolboxesDialog) |
|
41 self.debugGroup.setObjectName("debugGroup") |
|
42 self.verticalLayout = QtWidgets.QVBoxLayout(self.debugGroup) |
|
43 self.verticalLayout.setObjectName("verticalLayout") |
|
44 self.dpltCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup) |
|
45 self.dpltCheckBox.setObjectName("dpltCheckBox") |
|
46 self.verticalLayout.addWidget(self.dpltCheckBox) |
|
47 self.dprtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup) |
|
48 self.dprtCheckBox.setChecked(True) |
|
49 self.dprtCheckBox.setObjectName("dprtCheckBox") |
|
50 self.verticalLayout.addWidget(self.dprtCheckBox) |
|
51 self.dphtCheckBox = QtWidgets.QCheckBox(parent=self.debugGroup) |
|
52 self.dphtCheckBox.setChecked(True) |
|
53 self.dphtCheckBox.setObjectName("dphtCheckBox") |
|
54 self.verticalLayout.addWidget(self.dphtCheckBox) |
|
55 self.gridLayout.addWidget(self.debugGroup, 1, 1, 1, 1) |
|
56 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ViewProfileToolboxesDialog) |
|
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(ViewProfileToolboxesDialog) |
|
63 self.buttonBox.accepted.connect(ViewProfileToolboxesDialog.accept) # type: ignore |
|
64 self.buttonBox.rejected.connect(ViewProfileToolboxesDialog.reject) # type: ignore |
|
65 QtCore.QMetaObject.connectSlotsByName(ViewProfileToolboxesDialog) |
|
66 ViewProfileToolboxesDialog.setTabOrder(self.epltCheckBox, self.eprtCheckBox) |
|
67 ViewProfileToolboxesDialog.setTabOrder(self.eprtCheckBox, self.ephtCheckBox) |
|
68 ViewProfileToolboxesDialog.setTabOrder(self.ephtCheckBox, self.dpltCheckBox) |
|
69 ViewProfileToolboxesDialog.setTabOrder(self.dpltCheckBox, self.dprtCheckBox) |
|
70 ViewProfileToolboxesDialog.setTabOrder(self.dprtCheckBox, self.dphtCheckBox) |
|
71 ViewProfileToolboxesDialog.setTabOrder(self.dphtCheckBox, self.buttonBox) |
|
72 |
|
73 def retranslateUi(self, ViewProfileToolboxesDialog): |
|
74 _translate = QtCore.QCoreApplication.translate |
|
75 ViewProfileToolboxesDialog.setWindowTitle(_translate("ViewProfileToolboxesDialog", "Configure View Profiles")) |
|
76 self.textLabel1.setText(_translate("ViewProfileToolboxesDialog", "Select the windows, that should be visible, when the different profiles are active.")) |
|
77 self.editGroup.setTitle(_translate("ViewProfileToolboxesDialog", "&Edit Profile")) |
|
78 self.epltCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Left Toolbox")) |
|
79 self.eprtCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Right Toolbox")) |
|
80 self.ephtCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Horizontal Toolbox")) |
|
81 self.debugGroup.setTitle(_translate("ViewProfileToolboxesDialog", "&Debug Profile")) |
|
82 self.dpltCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Left Toolbox")) |
|
83 self.dprtCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Right Toolbox")) |
|
84 self.dphtCheckBox.setText(_translate("ViewProfileToolboxesDialog", "Horizontal Toolbox")) |