Pymecavideo 8.0
Étude cinématique à l'aide de vidéos
Ui_python_dialog.py
1# Form implementation generated from reading ui file 'python_dialog.ui'
2#
3# Created by: PyQt6 UI code generator 6.4.1
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
9from PyQt6 import QtCore, QtGui, QtWidgets
10
11
12class Ui_Dialog(object):
13 def setupUi(self, Dialog):
14 Dialog.setObjectName("Dialog")
15 Dialog.resize(388, 146)
16 self.verticalLayout = QtWidgets.QVBoxLayout(Dialog)
17 self.verticalLayout.setObjectName("verticalLayout")
18 self.checkBox_v = QtWidgets.QCheckBox(parent=Dialog)
19 self.checkBox_v.setObjectName("checkBox_v")
20 self.verticalLayout.addWidget(self.checkBox_v)
21 self.checkBox_v2 = QtWidgets.QCheckBox(parent=Dialog)
22 self.checkBox_v2.setObjectName("checkBox_v2")
23 self.verticalLayout.addWidget(self.checkBox_v2)
24 self.checkBox_a = QtWidgets.QCheckBox(parent=Dialog)
25 self.checkBox_a.setObjectName("checkBox_a")
26 self.verticalLayout.addWidget(self.checkBox_a)
27 self.checkBox_a2 = QtWidgets.QCheckBox(parent=Dialog)
28 self.checkBox_a2.setObjectName("checkBox_a2")
29 self.verticalLayout.addWidget(self.checkBox_a2)
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)
33 self.buttonBox.setObjectName("buttonBox")
34 self.verticalLayout.addWidget(self.buttonBox)
35
36 self.retranslateUi(Dialog)
37 self.buttonBox.accepted.connect(Dialog.accept) # type: ignore
38 self.buttonBox.rejected.connect(Dialog.reject) # type: ignore
39 QtCore.QMetaObject.connectSlotsByName(Dialog)
40
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"))