9from PyQt6
import QtCore, QtGui, QtWidgets
13 def setupUi(self, Dialog):
14 Dialog.setObjectName(
"Dialog")
15 Dialog.resize(388, 146)
18 self.
checkBox_v = QtWidgets.QCheckBox(parent=Dialog)
21 self.
checkBox_v2 = QtWidgets.QCheckBox(parent=Dialog)
24 self.
checkBox_a = QtWidgets.QCheckBox(parent=Dialog)
27 self.
checkBox_a2 = QtWidgets.QCheckBox(parent=Dialog)
30 self.
buttonBox = QtWidgets.QDialogButtonBox(parent=Dialog)
31 self.
buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
32 self.
buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
37 self.
buttonBox.accepted.connect(Dialog.accept)
38 self.
buttonBox.rejected.connect(Dialog.reject)
39 QtCore.QMetaObject.connectSlotsByName(Dialog)
41 def retranslateUi(self, Dialog):
42 _translate = QtCore.QCoreApplication.translate
43 Dialog.setWindowTitle(_translate(
"Dialog",
"Choix pour l\'export Python"))
44 self.
checkBox_v.setText(_translate(
"Dialog",
"Insérer les lignes pour le calcul de vitesse"))
45 self.
checkBox_v2.setText(_translate(
"Dialog",
"Insérer les lignes pour l\'affichage des vecteurs vitesse"))
46 self.
checkBox_a.setText(_translate(
"Dialog",
"Insérer les lignes pour le calcul des accélérations"))
47 self.
checkBox_a2.setText(_translate(
"Dialog",
"Insérer les lignes pour le calcul des vecteurs accélération"))
def retranslateUi(self, Dialog)