src/eric7/Debugger/Ui_StartHistoryEditDialog.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/Debugger/StartHistoryEditDialog.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_StartHistoryEditDialog(object):
13 def setupUi(self, StartHistoryEditDialog):
14 StartHistoryEditDialog.setObjectName("StartHistoryEditDialog")
15 StartHistoryEditDialog.resize(600, 400)
16 StartHistoryEditDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(StartHistoryEditDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.gridLayout = QtWidgets.QGridLayout()
20 self.gridLayout.setObjectName("gridLayout")
21 self.historyList = QtWidgets.QListWidget(parent=StartHistoryEditDialog)
22 self.historyList.setAlternatingRowColors(True)
23 self.historyList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
24 self.historyList.setObjectName("historyList")
25 self.gridLayout.addWidget(self.historyList, 0, 0, 5, 1)
26 self.editButton = QtWidgets.QPushButton(parent=StartHistoryEditDialog)
27 self.editButton.setObjectName("editButton")
28 self.gridLayout.addWidget(self.editButton, 0, 1, 1, 1)
29 self.line = QtWidgets.QFrame(parent=StartHistoryEditDialog)
30 self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine)
31 self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
32 self.line.setObjectName("line")
33 self.gridLayout.addWidget(self.line, 1, 1, 1, 1)
34 self.deleteButton = QtWidgets.QPushButton(parent=StartHistoryEditDialog)
35 self.deleteButton.setObjectName("deleteButton")
36 self.gridLayout.addWidget(self.deleteButton, 2, 1, 1, 1)
37 self.deleteAllButton = QtWidgets.QPushButton(parent=StartHistoryEditDialog)
38 self.deleteAllButton.setObjectName("deleteAllButton")
39 self.gridLayout.addWidget(self.deleteAllButton, 3, 1, 1, 1)
40 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
41 self.gridLayout.addItem(spacerItem, 4, 1, 1, 1)
42 self.verticalLayout.addLayout(self.gridLayout)
43 self.buttonBox = QtWidgets.QDialogButtonBox(parent=StartHistoryEditDialog)
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.verticalLayout.addWidget(self.buttonBox)
48
49 self.retranslateUi(StartHistoryEditDialog)
50 self.buttonBox.accepted.connect(StartHistoryEditDialog.accept) # type: ignore
51 self.buttonBox.rejected.connect(StartHistoryEditDialog.reject) # type: ignore
52 QtCore.QMetaObject.connectSlotsByName(StartHistoryEditDialog)
53
54 def retranslateUi(self, StartHistoryEditDialog):
55 _translate = QtCore.QCoreApplication.translate
56 StartHistoryEditDialog.setWindowTitle(_translate("StartHistoryEditDialog", "Edit History"))
57 self.editButton.setToolTip(_translate("StartHistoryEditDialog", "Press to edit the selected entry"))
58 self.editButton.setText(_translate("StartHistoryEditDialog", "Edit..."))
59 self.deleteButton.setToolTip(_translate("StartHistoryEditDialog", "Press to delete the selected entries"))
60 self.deleteButton.setText(_translate("StartHistoryEditDialog", "Delete Selected"))
61 self.deleteAllButton.setToolTip(_translate("StartHistoryEditDialog", "Press to delete all entries"))
62 self.deleteAllButton.setText(_translate("StartHistoryEditDialog", "Delete All"))

eric ide

mercurial