src/eric7/Project/Ui_UserPropertiesDialog.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/Project/UserPropertiesDialog.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_UserPropertiesDialog(object):
13 def setupUi(self, UserPropertiesDialog):
14 UserPropertiesDialog.setObjectName("UserPropertiesDialog")
15 UserPropertiesDialog.resize(543, 182)
16 UserPropertiesDialog.setSizeGripEnabled(True)
17 self._2 = QtWidgets.QVBoxLayout(UserPropertiesDialog)
18 self._2.setObjectName("_2")
19 self.groupBox_2 = QtWidgets.QGroupBox(parent=UserPropertiesDialog)
20 self.groupBox_2.setObjectName("groupBox_2")
21 self._3 = QtWidgets.QHBoxLayout(self.groupBox_2)
22 self._3.setObjectName("_3")
23 self.vcsStatusMonitorIntervalSpinBox = QtWidgets.QSpinBox(parent=self.groupBox_2)
24 self.vcsStatusMonitorIntervalSpinBox.setMaximum(3600)
25 self.vcsStatusMonitorIntervalSpinBox.setObjectName("vcsStatusMonitorIntervalSpinBox")
26 self._3.addWidget(self.vcsStatusMonitorIntervalSpinBox)
27 spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
28 self._3.addItem(spacerItem)
29 self._2.addWidget(self.groupBox_2)
30 self.vcsGroup = QtWidgets.QGroupBox(parent=UserPropertiesDialog)
31 self.vcsGroup.setObjectName("vcsGroup")
32 self._4 = QtWidgets.QVBoxLayout(self.vcsGroup)
33 self._4.setObjectName("_4")
34 self.vcsInterfaceCombo = QtWidgets.QComboBox(parent=self.vcsGroup)
35 self.vcsInterfaceCombo.setObjectName("vcsInterfaceCombo")
36 self._4.addWidget(self.vcsInterfaceCombo)
37 self.vcsInterfaceDefaultCheckBox = QtWidgets.QCheckBox(parent=self.vcsGroup)
38 self.vcsInterfaceDefaultCheckBox.setObjectName("vcsInterfaceDefaultCheckBox")
39 self._4.addWidget(self.vcsInterfaceDefaultCheckBox)
40 self._2.addWidget(self.vcsGroup)
41 self.buttonBox = QtWidgets.QDialogButtonBox(parent=UserPropertiesDialog)
42 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
43 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
44 self.buttonBox.setObjectName("buttonBox")
45 self._2.addWidget(self.buttonBox)
46
47 self.retranslateUi(UserPropertiesDialog)
48 self.buttonBox.accepted.connect(UserPropertiesDialog.accept) # type: ignore
49 self.buttonBox.rejected.connect(UserPropertiesDialog.reject) # type: ignore
50 QtCore.QMetaObject.connectSlotsByName(UserPropertiesDialog)
51 UserPropertiesDialog.setTabOrder(self.vcsStatusMonitorIntervalSpinBox, self.vcsInterfaceCombo)
52 UserPropertiesDialog.setTabOrder(self.vcsInterfaceCombo, self.vcsInterfaceDefaultCheckBox)
53 UserPropertiesDialog.setTabOrder(self.vcsInterfaceDefaultCheckBox, self.buttonBox)
54
55 def retranslateUi(self, UserPropertiesDialog):
56 _translate = QtCore.QCoreApplication.translate
57 UserPropertiesDialog.setWindowTitle(_translate("UserPropertiesDialog", "User Project Properties"))
58 UserPropertiesDialog.setWhatsThis(_translate("UserPropertiesDialog", "<b>User Project Properties</b>\n"
59 "<p>This dialog is used to show and edit the user specific project properties.</p>"))
60 self.groupBox_2.setTitle(_translate("UserPropertiesDialog", "VCS Status Monitor"))
61 self.vcsStatusMonitorIntervalSpinBox.setToolTip(_translate("UserPropertiesDialog", "Select the interval in seconds for VCS status updates (0 to disable)"))
62 self.vcsStatusMonitorIntervalSpinBox.setSuffix(_translate("UserPropertiesDialog", " sec"))
63 self.vcsGroup.setTitle(_translate("UserPropertiesDialog", "VCS Interface"))
64 self.vcsInterfaceCombo.setToolTip(_translate("UserPropertiesDialog", "Select the vcs interface to be used"))
65 self.vcsInterfaceDefaultCheckBox.setToolTip(_translate("UserPropertiesDialog", "Select to make the interface selection the default for the project"))
66 self.vcsInterfaceDefaultCheckBox.setText(_translate("UserPropertiesDialog", "Make interface selection the default"))

eric ide

mercurial