src/eric7/Plugins/WizardPlugins/PyRegExpWizard/Ui_PyRegExpWizardCharactersDialog.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/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardCharactersDialog.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_PyRegExpWizardCharactersDialog(object):
13 def setupUi(self, PyRegExpWizardCharactersDialog):
14 PyRegExpWizardCharactersDialog.setObjectName("PyRegExpWizardCharactersDialog")
15 PyRegExpWizardCharactersDialog.resize(800, 500)
16 PyRegExpWizardCharactersDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(PyRegExpWizardCharactersDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.negativeCheckBox = QtWidgets.QCheckBox(parent=PyRegExpWizardCharactersDialog)
20 self.negativeCheckBox.setObjectName("negativeCheckBox")
21 self.vboxlayout.addWidget(self.negativeCheckBox)
22 self.groupBox = QtWidgets.QGroupBox(parent=PyRegExpWizardCharactersDialog)
23 self.groupBox.setObjectName("groupBox")
24 self.gridlayout = QtWidgets.QGridLayout(self.groupBox)
25 self.gridlayout.setObjectName("gridlayout")
26 self.nonWhitespaceCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
27 self.nonWhitespaceCheckBox.setObjectName("nonWhitespaceCheckBox")
28 self.gridlayout.addWidget(self.nonWhitespaceCheckBox, 1, 2, 1, 1)
29 self.nonDigitsCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
30 self.nonDigitsCheckBox.setObjectName("nonDigitsCheckBox")
31 self.gridlayout.addWidget(self.nonDigitsCheckBox, 1, 1, 1, 1)
32 self.whitespaceCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
33 self.whitespaceCheckBox.setObjectName("whitespaceCheckBox")
34 self.gridlayout.addWidget(self.whitespaceCheckBox, 0, 2, 1, 1)
35 self.digitsCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
36 self.digitsCheckBox.setObjectName("digitsCheckBox")
37 self.gridlayout.addWidget(self.digitsCheckBox, 0, 1, 1, 1)
38 self.nonWordCharCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
39 self.nonWordCharCheckBox.setObjectName("nonWordCharCheckBox")
40 self.gridlayout.addWidget(self.nonWordCharCheckBox, 1, 0, 1, 1)
41 self.wordCharCheckBox = QtWidgets.QCheckBox(parent=self.groupBox)
42 self.wordCharCheckBox.setObjectName("wordCharCheckBox")
43 self.gridlayout.addWidget(self.wordCharCheckBox, 0, 0, 1, 1)
44 self.vboxlayout.addWidget(self.groupBox)
45 self.singlesBox = QtWidgets.QGroupBox(parent=PyRegExpWizardCharactersDialog)
46 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding)
47 sizePolicy.setHorizontalStretch(0)
48 sizePolicy.setVerticalStretch(0)
49 sizePolicy.setHeightForWidth(self.singlesBox.sizePolicy().hasHeightForWidth())
50 self.singlesBox.setSizePolicy(sizePolicy)
51 self.singlesBox.setObjectName("singlesBox")
52 self.vboxlayout.addWidget(self.singlesBox)
53 self.rangesBox = QtWidgets.QGroupBox(parent=PyRegExpWizardCharactersDialog)
54 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding)
55 sizePolicy.setHorizontalStretch(0)
56 sizePolicy.setVerticalStretch(0)
57 sizePolicy.setHeightForWidth(self.rangesBox.sizePolicy().hasHeightForWidth())
58 self.rangesBox.setSizePolicy(sizePolicy)
59 self.rangesBox.setObjectName("rangesBox")
60 self.vboxlayout.addWidget(self.rangesBox)
61 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyRegExpWizardCharactersDialog)
62 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
63 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
64 self.buttonBox.setObjectName("buttonBox")
65 self.vboxlayout.addWidget(self.buttonBox)
66
67 self.retranslateUi(PyRegExpWizardCharactersDialog)
68 self.buttonBox.accepted.connect(PyRegExpWizardCharactersDialog.accept) # type: ignore
69 self.buttonBox.rejected.connect(PyRegExpWizardCharactersDialog.reject) # type: ignore
70 QtCore.QMetaObject.connectSlotsByName(PyRegExpWizardCharactersDialog)
71 PyRegExpWizardCharactersDialog.setTabOrder(self.negativeCheckBox, self.wordCharCheckBox)
72 PyRegExpWizardCharactersDialog.setTabOrder(self.wordCharCheckBox, self.nonWordCharCheckBox)
73 PyRegExpWizardCharactersDialog.setTabOrder(self.nonWordCharCheckBox, self.digitsCheckBox)
74 PyRegExpWizardCharactersDialog.setTabOrder(self.digitsCheckBox, self.nonDigitsCheckBox)
75 PyRegExpWizardCharactersDialog.setTabOrder(self.nonDigitsCheckBox, self.whitespaceCheckBox)
76 PyRegExpWizardCharactersDialog.setTabOrder(self.whitespaceCheckBox, self.nonWhitespaceCheckBox)
77
78 def retranslateUi(self, PyRegExpWizardCharactersDialog):
79 _translate = QtCore.QCoreApplication.translate
80 PyRegExpWizardCharactersDialog.setWindowTitle(_translate("PyRegExpWizardCharactersDialog", "Editor for character sets"))
81 self.negativeCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "The defined characters should not match"))
82 self.groupBox.setTitle(_translate("PyRegExpWizardCharactersDialog", "Predefined character ranges"))
83 self.nonWhitespaceCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Non-whitespace characters"))
84 self.nonDigitsCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Non-digits"))
85 self.whitespaceCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Whitespace characters"))
86 self.digitsCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Digits"))
87 self.nonWordCharCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Non-word characters"))
88 self.wordCharCheckBox.setText(_translate("PyRegExpWizardCharactersDialog", "Word character"))
89 self.singlesBox.setTitle(_translate("PyRegExpWizardCharactersDialog", "Single character"))
90 self.rangesBox.setTitle(_translate("PyRegExpWizardCharactersDialog", "Character ranges"))

eric ide

mercurial