src/eric7/Project/Ui_MakePropertiesDialog.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/MakePropertiesDialog.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_MakePropertiesDialog(object):
13 def setupUi(self, MakePropertiesDialog):
14 MakePropertiesDialog.setObjectName("MakePropertiesDialog")
15 MakePropertiesDialog.resize(600, 266)
16 MakePropertiesDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(MakePropertiesDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=MakePropertiesDialog)
20 self.label.setObjectName("label")
21 self.verticalLayout.addWidget(self.label)
22 self.makePicker = EricPathPicker(parent=MakePropertiesDialog)
23 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
24 sizePolicy.setHorizontalStretch(0)
25 sizePolicy.setVerticalStretch(0)
26 sizePolicy.setHeightForWidth(self.makePicker.sizePolicy().hasHeightForWidth())
27 self.makePicker.setSizePolicy(sizePolicy)
28 self.makePicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
29 self.makePicker.setObjectName("makePicker")
30 self.verticalLayout.addWidget(self.makePicker)
31 self.label_2 = QtWidgets.QLabel(parent=MakePropertiesDialog)
32 self.label_2.setObjectName("label_2")
33 self.verticalLayout.addWidget(self.label_2)
34 self.makefilePicker = EricPathPicker(parent=MakePropertiesDialog)
35 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
36 sizePolicy.setHorizontalStretch(0)
37 sizePolicy.setVerticalStretch(0)
38 sizePolicy.setHeightForWidth(self.makefilePicker.sizePolicy().hasHeightForWidth())
39 self.makefilePicker.setSizePolicy(sizePolicy)
40 self.makefilePicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
41 self.makefilePicker.setObjectName("makefilePicker")
42 self.verticalLayout.addWidget(self.makefilePicker)
43 self.label_3 = QtWidgets.QLabel(parent=MakePropertiesDialog)
44 self.label_3.setObjectName("label_3")
45 self.verticalLayout.addWidget(self.label_3)
46 self.makeTargetEdit = QtWidgets.QLineEdit(parent=MakePropertiesDialog)
47 self.makeTargetEdit.setClearButtonEnabled(True)
48 self.makeTargetEdit.setObjectName("makeTargetEdit")
49 self.verticalLayout.addWidget(self.makeTargetEdit)
50 self.label_4 = QtWidgets.QLabel(parent=MakePropertiesDialog)
51 self.label_4.setWordWrap(True)
52 self.label_4.setObjectName("label_4")
53 self.verticalLayout.addWidget(self.label_4)
54 self.makeParametersEdit = QtWidgets.QLineEdit(parent=MakePropertiesDialog)
55 self.makeParametersEdit.setClearButtonEnabled(True)
56 self.makeParametersEdit.setObjectName("makeParametersEdit")
57 self.verticalLayout.addWidget(self.makeParametersEdit)
58 self.testOnlyCheckBox = QtWidgets.QCheckBox(parent=MakePropertiesDialog)
59 self.testOnlyCheckBox.setObjectName("testOnlyCheckBox")
60 self.verticalLayout.addWidget(self.testOnlyCheckBox)
61 self.buttonBox = QtWidgets.QDialogButtonBox(parent=MakePropertiesDialog)
62 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
63 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
64 self.buttonBox.setObjectName("buttonBox")
65 self.verticalLayout.addWidget(self.buttonBox)
66
67 self.retranslateUi(MakePropertiesDialog)
68 self.buttonBox.accepted.connect(MakePropertiesDialog.accept) # type: ignore
69 self.buttonBox.rejected.connect(MakePropertiesDialog.reject) # type: ignore
70 QtCore.QMetaObject.connectSlotsByName(MakePropertiesDialog)
71
72 def retranslateUi(self, MakePropertiesDialog):
73 _translate = QtCore.QCoreApplication.translate
74 MakePropertiesDialog.setWindowTitle(_translate("MakePropertiesDialog", "Make Properties"))
75 self.label.setText(_translate("MakePropertiesDialog", "\'make\' Executable (leave empty to use global \'make\'):"))
76 self.makePicker.setToolTip(_translate("MakePropertiesDialog", "Enter the executable name of the make utility"))
77 self.label_2.setText(_translate("MakePropertiesDialog", "\'makefile\' path or directory (without file name \'makefile\' will be used):"))
78 self.makefilePicker.setToolTip(_translate("MakePropertiesDialog", "Enter the name and/or path of the makefile"))
79 self.label_3.setText(_translate("MakePropertiesDialog", "Make Target:"))
80 self.makeTargetEdit.setToolTip(_translate("MakePropertiesDialog", "Enter the make target to be built"))
81 self.label_4.setText(_translate("MakePropertiesDialog", "Make Command Parameters (enclose parameters containing spaces in \"\"):"))
82 self.makeParametersEdit.setToolTip(_translate("MakePropertiesDialog", "Enter the command parameters for make"))
83 self.testOnlyCheckBox.setToolTip(_translate("MakePropertiesDialog", "Select to just test for changes needing a make run"))
84 self.testOnlyCheckBox.setText(_translate("MakePropertiesDialog", "Test for changes only when run automatically"))
85 from eric7.EricWidgets.EricPathPicker import EricPathPicker

eric ide

mercurial