Pymecavideo 8.0
Étude cinématique à l'aide de vidéos
Ui_jupyter_dialog.py
1# Form implementation generated from reading ui file 'jupyter_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(319, 173)
16 self.verticalLayout = QtWidgets.QVBoxLayout(Dialog)
17 self.verticalLayout.setObjectName("verticalLayout")
18 self.checkBox_c = QtWidgets.QCheckBox(parent=Dialog)
19 self.checkBox_c.setChecked(True)
20 self.checkBox_c.setObjectName("checkBox_c")
21 self.verticalLayout.addWidget(self.checkBox_c)
22 self.checkBox_v = QtWidgets.QCheckBox(parent=Dialog)
23 self.checkBox_v.setChecked(True)
24 self.checkBox_v.setObjectName("checkBox_v")
25 self.verticalLayout.addWidget(self.checkBox_v)
26 self.checkBox_v2 = QtWidgets.QCheckBox(parent=Dialog)
27 self.checkBox_v2.setChecked(True)
28 self.checkBox_v2.setObjectName("checkBox_v2")
29 self.verticalLayout.addWidget(self.checkBox_v2)
30 self.checkBox_a = QtWidgets.QCheckBox(parent=Dialog)
31 self.checkBox_a.setChecked(True)
32 self.checkBox_a.setObjectName("checkBox_a")
33 self.verticalLayout.addWidget(self.checkBox_a)
34 self.checkBox_e = QtWidgets.QCheckBox(parent=Dialog)
35 self.checkBox_e.setChecked(True)
36 self.checkBox_e.setObjectName("checkBox_e")
37 self.verticalLayout.addWidget(self.checkBox_e)
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)
41 self.buttonBox.setObjectName("buttonBox")
42 self.verticalLayout.addWidget(self.buttonBox)
43
44 self.retranslateUi(Dialog)
45 self.buttonBox.accepted.connect(Dialog.accept) # type: ignore
46 self.buttonBox.rejected.connect(Dialog.reject) # type: ignore
47 QtCore.QMetaObject.connectSlotsByName(Dialog)
48
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"))