9from PyQt6
import QtCore, QtGui, QtWidgets
13 def setupUi(self, Dialog):
14 Dialog.setObjectName(
"Dialog")
15 Dialog.resize(319, 173)
18 self.
checkBox_c = QtWidgets.QCheckBox(parent=Dialog)
22 self.
checkBox_v = QtWidgets.QCheckBox(parent=Dialog)
26 self.
checkBox_v2 = QtWidgets.QCheckBox(parent=Dialog)
30 self.
checkBox_a = QtWidgets.QCheckBox(parent=Dialog)
34 self.
checkBox_e = QtWidgets.QCheckBox(parent=Dialog)
38 self.
buttonBox = QtWidgets.QDialogButtonBox(parent=Dialog)
39 self.
buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
40 self.
buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
45 self.
buttonBox.accepted.connect(Dialog.accept)
46 self.
buttonBox.rejected.connect(Dialog.reject)
47 QtCore.QMetaObject.connectSlotsByName(Dialog)
49 def retranslateUi(self, Dialog):
50 _translate = QtCore.QCoreApplication.translate
51 Dialog.setWindowTitle(_translate(
"Dialog",
"Choix des représentations graphiques"))
52 self.
checkBox_c.setText(_translate(
"Dialog",
"Chronogramme des positions"))
53 self.
checkBox_v.setText(_translate(
"Dialog",
"Vecteurs vitesse"))
54 self.
checkBox_v2.setText(_translate(
"Dialog",
"Vecteurs variation de vitesse"))
55 self.
checkBox_a.setText(_translate(
"Dialog",
"Vecteurs accélération"))
56 self.
checkBox_e.setText(_translate(
"Dialog",
"Énergies"))
def retranslateUi(self, Dialog)