|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MicroPython/WifiDialogs/WifiCountryDialog.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_WifiCountryDialog(object): |
|
13 def setupUi(self, WifiCountryDialog): |
|
14 WifiCountryDialog.setObjectName("WifiCountryDialog") |
|
15 WifiCountryDialog.resize(250, 106) |
|
16 WifiCountryDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(WifiCountryDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.label_13 = QtWidgets.QLabel(parent=WifiCountryDialog) |
|
20 self.label_13.setObjectName("label_13") |
|
21 self.gridLayout.addWidget(self.label_13, 0, 0, 1, 1) |
|
22 self.countryEdit = QtWidgets.QLineEdit(parent=WifiCountryDialog) |
|
23 self.countryEdit.setInputMask(">AA;_") |
|
24 self.countryEdit.setMaxLength(2) |
|
25 self.countryEdit.setClearButtonEnabled(True) |
|
26 self.countryEdit.setObjectName("countryEdit") |
|
27 self.gridLayout.addWidget(self.countryEdit, 0, 1, 1, 1) |
|
28 self.rememberCheckBox = QtWidgets.QCheckBox(parent=WifiCountryDialog) |
|
29 self.rememberCheckBox.setObjectName("rememberCheckBox") |
|
30 self.gridLayout.addWidget(self.rememberCheckBox, 1, 0, 1, 3) |
|
31 self.buttonBox = QtWidgets.QDialogButtonBox(parent=WifiCountryDialog) |
|
32 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
33 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
34 self.buttonBox.setObjectName("buttonBox") |
|
35 self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 3) |
|
36 |
|
37 self.retranslateUi(WifiCountryDialog) |
|
38 self.buttonBox.accepted.connect(WifiCountryDialog.accept) # type: ignore |
|
39 self.buttonBox.rejected.connect(WifiCountryDialog.reject) # type: ignore |
|
40 QtCore.QMetaObject.connectSlotsByName(WifiCountryDialog) |
|
41 WifiCountryDialog.setTabOrder(self.countryEdit, self.rememberCheckBox) |
|
42 |
|
43 def retranslateUi(self, WifiCountryDialog): |
|
44 _translate = QtCore.QCoreApplication.translate |
|
45 WifiCountryDialog.setWindowTitle(_translate("WifiCountryDialog", "WiFi Country Code")) |
|
46 self.label_13.setText(_translate("WifiCountryDialog", "Country:")) |
|
47 self.countryEdit.setToolTip(_translate("WifiCountryDialog", "Enter the country code for the WiFi interface")) |
|
48 self.rememberCheckBox.setToolTip(_translate("WifiCountryDialog", "Select to remember the entered connection parameters")) |
|
49 self.rememberCheckBox.setText(_translate("WifiCountryDialog", "Remember Parameters")) |