src/eric7/Preferences/ConfigurationPages/Ui_GraphicsPage.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/GraphicsPage.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_GraphicsPage(object):
13 def setupUi(self, GraphicsPage):
14 GraphicsPage.setObjectName("GraphicsPage")
15 GraphicsPage.resize(440, 241)
16 self.verticalLayout = QtWidgets.QVBoxLayout(GraphicsPage)
17 self.verticalLayout.setObjectName("verticalLayout")
18 self.headerLabel = QtWidgets.QLabel(parent=GraphicsPage)
19 self.headerLabel.setObjectName("headerLabel")
20 self.verticalLayout.addWidget(self.headerLabel)
21 self.line7 = QtWidgets.QFrame(parent=GraphicsPage)
22 self.line7.setFrameShape(QtWidgets.QFrame.Shape.HLine)
23 self.line7.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
24 self.line7.setFrameShape(QtWidgets.QFrame.Shape.HLine)
25 self.line7.setObjectName("line7")
26 self.verticalLayout.addWidget(self.line7)
27 self.groupBox_2 = QtWidgets.QGroupBox(parent=GraphicsPage)
28 self.groupBox_2.setObjectName("groupBox_2")
29 self.horizontalLayout = QtWidgets.QHBoxLayout(self.groupBox_2)
30 self.horizontalLayout.setObjectName("horizontalLayout")
31 self.graphicsFontButton = QtWidgets.QPushButton(parent=self.groupBox_2)
32 self.graphicsFontButton.setObjectName("graphicsFontButton")
33 self.horizontalLayout.addWidget(self.graphicsFontButton)
34 self.graphicsFontSample = QtWidgets.QLineEdit(parent=self.groupBox_2)
35 self.graphicsFontSample.setFocusPolicy(QtCore.Qt.FocusPolicy.NoFocus)
36 self.graphicsFontSample.setAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter)
37 self.graphicsFontSample.setReadOnly(True)
38 self.graphicsFontSample.setObjectName("graphicsFontSample")
39 self.horizontalLayout.addWidget(self.graphicsFontSample)
40 self.verticalLayout.addWidget(self.groupBox_2)
41 self.groupBox = QtWidgets.QGroupBox(parent=GraphicsPage)
42 self.groupBox.setObjectName("groupBox")
43 self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.groupBox)
44 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
45 self.automaticButton = QtWidgets.QRadioButton(parent=self.groupBox)
46 self.automaticButton.setChecked(True)
47 self.automaticButton.setObjectName("automaticButton")
48 self.horizontalLayout_2.addWidget(self.automaticButton)
49 self.blackWhiteButton = QtWidgets.QRadioButton(parent=self.groupBox)
50 self.blackWhiteButton.setObjectName("blackWhiteButton")
51 self.horizontalLayout_2.addWidget(self.blackWhiteButton)
52 self.whiteBlackButton = QtWidgets.QRadioButton(parent=self.groupBox)
53 self.whiteBlackButton.setObjectName("whiteBlackButton")
54 self.horizontalLayout_2.addWidget(self.whiteBlackButton)
55 spacerItem = QtWidgets.QSpacerItem(53, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
56 self.horizontalLayout_2.addItem(spacerItem)
57 self.verticalLayout.addWidget(self.groupBox)
58 spacerItem1 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
59 self.verticalLayout.addItem(spacerItem1)
60
61 self.retranslateUi(GraphicsPage)
62 QtCore.QMetaObject.connectSlotsByName(GraphicsPage)
63 GraphicsPage.setTabOrder(self.graphicsFontButton, self.blackWhiteButton)
64 GraphicsPage.setTabOrder(self.blackWhiteButton, self.whiteBlackButton)
65
66 def retranslateUi(self, GraphicsPage):
67 _translate = QtCore.QCoreApplication.translate
68 self.headerLabel.setText(_translate("GraphicsPage", "<b>Configure graphics settings</b>"))
69 self.groupBox_2.setTitle(_translate("GraphicsPage", "Font"))
70 self.graphicsFontButton.setToolTip(_translate("GraphicsPage", "Press to select the font for the graphic items"))
71 self.graphicsFontButton.setText(_translate("GraphicsPage", "Graphics Font"))
72 self.graphicsFontSample.setText(_translate("GraphicsPage", "Graphics Font"))
73 self.groupBox.setTitle(_translate("GraphicsPage", "Drawing Mode"))
74 self.automaticButton.setToolTip(_translate("GraphicsPage", "Select to determine the drawing mode automatically"))
75 self.automaticButton.setText(_translate("GraphicsPage", "Automatic"))
76 self.blackWhiteButton.setToolTip(_translate("GraphicsPage", "Select to draw black shapes on a white background"))
77 self.blackWhiteButton.setText(_translate("GraphicsPage", "Black On White"))
78 self.whiteBlackButton.setToolTip(_translate("GraphicsPage", "Select to draw white shapes on a black background"))
79 self.whiteBlackButton.setText(_translate("GraphicsPage", "White On Black"))

eric ide

mercurial