|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MicroPython/MicroPythonWebreplUrlsConfigDialog.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_MicroPythonWebreplUrlsConfigDialog(object): |
|
13 def setupUi(self, MicroPythonWebreplUrlsConfigDialog): |
|
14 MicroPythonWebreplUrlsConfigDialog.setObjectName("MicroPythonWebreplUrlsConfigDialog") |
|
15 MicroPythonWebreplUrlsConfigDialog.resize(713, 516) |
|
16 MicroPythonWebreplUrlsConfigDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(MicroPythonWebreplUrlsConfigDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.webreplUrlsList = QtWidgets.QTreeWidget(parent=MicroPythonWebreplUrlsConfigDialog) |
|
20 self.webreplUrlsList.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) |
|
21 self.webreplUrlsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection) |
|
22 self.webreplUrlsList.setRootIsDecorated(False) |
|
23 self.webreplUrlsList.setItemsExpandable(False) |
|
24 self.webreplUrlsList.setObjectName("webreplUrlsList") |
|
25 self.gridLayout.addWidget(self.webreplUrlsList, 0, 0, 1, 1) |
|
26 self.verticalLayout = QtWidgets.QVBoxLayout() |
|
27 self.verticalLayout.setObjectName("verticalLayout") |
|
28 self.addButton = QtWidgets.QPushButton(parent=MicroPythonWebreplUrlsConfigDialog) |
|
29 self.addButton.setObjectName("addButton") |
|
30 self.verticalLayout.addWidget(self.addButton) |
|
31 self.editButton = QtWidgets.QPushButton(parent=MicroPythonWebreplUrlsConfigDialog) |
|
32 self.editButton.setObjectName("editButton") |
|
33 self.verticalLayout.addWidget(self.editButton) |
|
34 self.removeButton = QtWidgets.QPushButton(parent=MicroPythonWebreplUrlsConfigDialog) |
|
35 self.removeButton.setObjectName("removeButton") |
|
36 self.verticalLayout.addWidget(self.removeButton) |
|
37 self.removeAllButton = QtWidgets.QPushButton(parent=MicroPythonWebreplUrlsConfigDialog) |
|
38 self.removeAllButton.setObjectName("removeAllButton") |
|
39 self.verticalLayout.addWidget(self.removeAllButton) |
|
40 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
41 self.verticalLayout.addItem(spacerItem) |
|
42 self.gridLayout.addLayout(self.verticalLayout, 0, 1, 1, 1) |
|
43 self.buttonBox = QtWidgets.QDialogButtonBox(parent=MicroPythonWebreplUrlsConfigDialog) |
|
44 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
45 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
46 self.buttonBox.setObjectName("buttonBox") |
|
47 self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) |
|
48 self.label = QtWidgets.QLabel(parent=MicroPythonWebreplUrlsConfigDialog) |
|
49 self.label.setObjectName("label") |
|
50 self.gridLayout.addWidget(self.label, 1, 0, 1, 2) |
|
51 |
|
52 self.retranslateUi(MicroPythonWebreplUrlsConfigDialog) |
|
53 self.buttonBox.accepted.connect(MicroPythonWebreplUrlsConfigDialog.accept) # type: ignore |
|
54 self.buttonBox.rejected.connect(MicroPythonWebreplUrlsConfigDialog.reject) # type: ignore |
|
55 QtCore.QMetaObject.connectSlotsByName(MicroPythonWebreplUrlsConfigDialog) |
|
56 |
|
57 def retranslateUi(self, MicroPythonWebreplUrlsConfigDialog): |
|
58 _translate = QtCore.QCoreApplication.translate |
|
59 MicroPythonWebreplUrlsConfigDialog.setWindowTitle(_translate("MicroPythonWebreplUrlsConfigDialog", "WebREPL URLs")) |
|
60 self.webreplUrlsList.setSortingEnabled(True) |
|
61 self.webreplUrlsList.headerItem().setText(0, _translate("MicroPythonWebreplUrlsConfigDialog", "Name")) |
|
62 self.webreplUrlsList.headerItem().setText(1, _translate("MicroPythonWebreplUrlsConfigDialog", "Description")) |
|
63 self.webreplUrlsList.headerItem().setText(2, _translate("MicroPythonWebreplUrlsConfigDialog", "URL")) |
|
64 self.addButton.setToolTip(_translate("MicroPythonWebreplUrlsConfigDialog", "Press to add a new entry.")) |
|
65 self.addButton.setText(_translate("MicroPythonWebreplUrlsConfigDialog", "Add...")) |
|
66 self.editButton.setToolTip(_translate("MicroPythonWebreplUrlsConfigDialog", "Press to edit the selected entry.")) |
|
67 self.editButton.setText(_translate("MicroPythonWebreplUrlsConfigDialog", "Edit...")) |
|
68 self.removeButton.setToolTip(_translate("MicroPythonWebreplUrlsConfigDialog", "Press to remove the selected entries.")) |
|
69 self.removeButton.setText(_translate("MicroPythonWebreplUrlsConfigDialog", "Remove")) |
|
70 self.removeAllButton.setToolTip(_translate("MicroPythonWebreplUrlsConfigDialog", "Press to remove all entries.")) |
|
71 self.removeAllButton.setText(_translate("MicroPythonWebreplUrlsConfigDialog", "Remove All")) |
|
72 self.label.setText(_translate("MicroPythonWebreplUrlsConfigDialog", "<b>Note:</b> The name of an entry must be unique amongst the list.")) |