src/eric7/WebBrowser/Network/Ui_ProtocolHandlerManagerDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/WebBrowser/Network/ProtocolHandlerManagerDialog.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_ProtocolHandlerManagerDialog(object):
13 def setupUi(self, ProtocolHandlerManagerDialog):
14 ProtocolHandlerManagerDialog.setObjectName("ProtocolHandlerManagerDialog")
15 ProtocolHandlerManagerDialog.resize(500, 400)
16 ProtocolHandlerManagerDialog.setSizeGripEnabled(True)
17 self.gridLayout = QtWidgets.QGridLayout(ProtocolHandlerManagerDialog)
18 self.gridLayout.setObjectName("gridLayout")
19 self.protocolHandlersList = QtWidgets.QTreeWidget(parent=ProtocolHandlerManagerDialog)
20 self.protocolHandlersList.setAlternatingRowColors(True)
21 self.protocolHandlersList.setRootIsDecorated(False)
22 self.protocolHandlersList.setObjectName("protocolHandlersList")
23 self.gridLayout.addWidget(self.protocolHandlersList, 0, 0, 1, 1)
24 self.verticalLayout = QtWidgets.QVBoxLayout()
25 self.verticalLayout.setObjectName("verticalLayout")
26 self.deleteButton = QtWidgets.QPushButton(parent=ProtocolHandlerManagerDialog)
27 self.deleteButton.setObjectName("deleteButton")
28 self.verticalLayout.addWidget(self.deleteButton)
29 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
30 self.verticalLayout.addItem(spacerItem)
31 self.gridLayout.addLayout(self.verticalLayout, 0, 1, 1, 1)
32 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ProtocolHandlerManagerDialog)
33 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
34 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
35 self.buttonBox.setObjectName("buttonBox")
36 self.gridLayout.addWidget(self.buttonBox, 1, 0, 1, 2)
37
38 self.retranslateUi(ProtocolHandlerManagerDialog)
39 self.buttonBox.accepted.connect(ProtocolHandlerManagerDialog.accept) # type: ignore
40 self.buttonBox.rejected.connect(ProtocolHandlerManagerDialog.reject) # type: ignore
41 QtCore.QMetaObject.connectSlotsByName(ProtocolHandlerManagerDialog)
42
43 def retranslateUi(self, ProtocolHandlerManagerDialog):
44 _translate = QtCore.QCoreApplication.translate
45 ProtocolHandlerManagerDialog.setWindowTitle(_translate("ProtocolHandlerManagerDialog", "Protocol Handlers"))
46 self.protocolHandlersList.setToolTip(_translate("ProtocolHandlerManagerDialog", "Shows a list of registered protocol handlers"))
47 self.protocolHandlersList.headerItem().setText(0, _translate("ProtocolHandlerManagerDialog", "Scheme"))
48 self.protocolHandlersList.headerItem().setText(1, _translate("ProtocolHandlerManagerDialog", "URL"))
49 self.deleteButton.setToolTip(_translate("ProtocolHandlerManagerDialog", "Press to delete the protocol handler"))
50 self.deleteButton.setText(_translate("ProtocolHandlerManagerDialog", "Delete"))

eric ide

mercurial