9from PyQt6
import QtCore, QtGui, QtWidgets
13 def setupUi(self, Dialog):
14 Dialog.setObjectName(
"Dialog")
15 Dialog.resize(360, 205)
18 self.
gbDec = QtWidgets.QGroupBox(parent=Dialog)
19 self.
gbDec.setObjectName(
"gbDec")
24 self.
rbDecDot.setObjectName(
"rbDecDot")
29 spacerItem = QtWidgets.QSpacerItem(147, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
32 self.
gbCha = QtWidgets.QGroupBox(parent=Dialog)
33 self.
gbCha.setObjectName(
"gbCha")
47 self.
checkBox = QtWidgets.QCheckBox(parent=Dialog)
48 self.
checkBox.setObjectName(
"checkBox")
50 self.
buttonBox = QtWidgets.QDialogButtonBox(parent=Dialog)
51 self.
buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
52 self.
buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
57 self.
buttonBox.accepted.connect(Dialog.accept)
58 self.
buttonBox.rejected.connect(Dialog.reject)
59 QtCore.QMetaObject.connectSlotsByName(Dialog)
61 def retranslateUi(self, Dialog):
62 _translate = QtCore.QCoreApplication.translate
63 Dialog.setWindowTitle(_translate(
"Dialog",
"Options de l\'export CSV"))
64 self.
gbDec.setTitle(_translate(
"Dialog",
"Séparateur décimal :"))
65 self.
rbDecDot.setText(_translate(
"Dialog",
"Point (.)"))
66 self.
rbDecComma.setText(_translate(
"Dialog",
"Virgule (,)"))
67 self.
gbCha.setTitle(_translate(
"Dialog",
"Séparateur de champ :"))
68 self.
rbFieldComma.setText(_translate(
"Dialog",
"Virgule (,)"))
70 self.
rbFieldTab.setText(_translate(
"Dialog",
"Tabulation (t)"))
71 self.
checkBox.setText(_translate(
"Dialog",
"Ajouter les grandeurs comme en-tête"))
def retranslateUi(self, Dialog)