|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MicroPython/MicroPythonWebreplParametersDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.0 |
|
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 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_MicroPythonWebreplParametersDialog(object): |
|
13 def setupUi(self, MicroPythonWebreplParametersDialog): |
|
14 MicroPythonWebreplParametersDialog.setObjectName("MicroPythonWebreplParametersDialog") |
|
15 MicroPythonWebreplParametersDialog.resize(400, 108) |
|
16 MicroPythonWebreplParametersDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(MicroPythonWebreplParametersDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.label = QtWidgets.QLabel(parent=MicroPythonWebreplParametersDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.gridLayout.addWidget(self.label, 0, 0, 1, 1) |
|
22 self.passwordEdit = QtWidgets.QLineEdit(parent=MicroPythonWebreplParametersDialog) |
|
23 self.passwordEdit.setMaxLength(9) |
|
24 self.passwordEdit.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password) |
|
25 self.passwordEdit.setClearButtonEnabled(True) |
|
26 self.passwordEdit.setObjectName("passwordEdit") |
|
27 self.gridLayout.addWidget(self.passwordEdit, 0, 1, 1, 1) |
|
28 self.label_2 = QtWidgets.QLabel(parent=MicroPythonWebreplParametersDialog) |
|
29 self.label_2.setObjectName("label_2") |
|
30 self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) |
|
31 self.passwordConfirmEdit = QtWidgets.QLineEdit(parent=MicroPythonWebreplParametersDialog) |
|
32 self.passwordConfirmEdit.setMaxLength(9) |
|
33 self.passwordConfirmEdit.setEchoMode(QtWidgets.QLineEdit.EchoMode.Password) |
|
34 self.passwordConfirmEdit.setClearButtonEnabled(True) |
|
35 self.passwordConfirmEdit.setObjectName("passwordConfirmEdit") |
|
36 self.gridLayout.addWidget(self.passwordConfirmEdit, 1, 1, 1, 1) |
|
37 self.buttonBox = QtWidgets.QDialogButtonBox(parent=MicroPythonWebreplParametersDialog) |
|
38 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
39 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
40 self.buttonBox.setObjectName("buttonBox") |
|
41 self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) |
|
42 |
|
43 self.retranslateUi(MicroPythonWebreplParametersDialog) |
|
44 self.buttonBox.accepted.connect(MicroPythonWebreplParametersDialog.accept) # type: ignore |
|
45 self.buttonBox.rejected.connect(MicroPythonWebreplParametersDialog.reject) # type: ignore |
|
46 QtCore.QMetaObject.connectSlotsByName(MicroPythonWebreplParametersDialog) |
|
47 |
|
48 def retranslateUi(self, MicroPythonWebreplParametersDialog): |
|
49 _translate = QtCore.QCoreApplication.translate |
|
50 MicroPythonWebreplParametersDialog.setWindowTitle(_translate("MicroPythonWebreplParametersDialog", "WebREPL Server Parameters")) |
|
51 self.label.setText(_translate("MicroPythonWebreplParametersDialog", "Password (4-9 characters):")) |
|
52 self.passwordEdit.setToolTip(_translate("MicroPythonWebreplParametersDialog", "Enter the password for the device WebREPL server.")) |
|
53 self.label_2.setText(_translate("MicroPythonWebreplParametersDialog", "Confirm Password:")) |
|
54 self.passwordConfirmEdit.setToolTip(_translate("MicroPythonWebreplParametersDialog", "Repeat the WebREPL server password.")) |