src/eric7/Preferences/ConfigurationPages/Ui_EditorHighlightingStylesSelectionDialog.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/Preferences/ConfigurationPages/EditorHighlightingStylesSelectionDialog.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_EditorHighlightingStylesSelectionDialog(object):
13 def setupUi(self, EditorHighlightingStylesSelectionDialog):
14 EditorHighlightingStylesSelectionDialog.setObjectName("EditorHighlightingStylesSelectionDialog")
15 EditorHighlightingStylesSelectionDialog.resize(400, 500)
16 EditorHighlightingStylesSelectionDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(EditorHighlightingStylesSelectionDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.infoLabel = QtWidgets.QLabel(parent=EditorHighlightingStylesSelectionDialog)
20 self.infoLabel.setWordWrap(True)
21 self.infoLabel.setObjectName("infoLabel")
22 self.verticalLayout.addWidget(self.infoLabel)
23 self.lexersList = QtWidgets.QListWidget(parent=EditorHighlightingStylesSelectionDialog)
24 self.lexersList.setAlternatingRowColors(True)
25 self.lexersList.setObjectName("lexersList")
26 self.verticalLayout.addWidget(self.lexersList)
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=EditorHighlightingStylesSelectionDialog)
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
30 self.buttonBox.setObjectName("buttonBox")
31 self.verticalLayout.addWidget(self.buttonBox)
32
33 self.retranslateUi(EditorHighlightingStylesSelectionDialog)
34 self.buttonBox.accepted.connect(EditorHighlightingStylesSelectionDialog.accept) # type: ignore
35 self.buttonBox.rejected.connect(EditorHighlightingStylesSelectionDialog.reject) # type: ignore
36 QtCore.QMetaObject.connectSlotsByName(EditorHighlightingStylesSelectionDialog)
37
38 def retranslateUi(self, EditorHighlightingStylesSelectionDialog):
39 _translate = QtCore.QCoreApplication.translate
40 self.lexersList.setSortingEnabled(True)

eric ide

mercurial