# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'src/resources/_ui/mean_form.ui'
#
# Created by: PyQt5 UI code generator 5.15.7
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt5 import QtCore, QtGui, QtWidgets


class Ui_mean_form(object):
    def setupUi(self, mean_form):
        mean_form.setObjectName("mean_form")
        mean_form.resize(712, 34)
        self.horizontalLayout = QtWidgets.QHBoxLayout(mean_form)
        self.horizontalLayout.setContentsMargins(1, 1, 1, 1)
        self.horizontalLayout.setObjectName("horizontalLayout")
        self.label = QtWidgets.QLabel(mean_form)
        self.label.setAlignment(QtCore.Qt.AlignCenter)
        self.label.setObjectName("label")
        self.horizontalLayout.addWidget(self.label)
        spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
        self.horizontalLayout.addItem(spacerItem)
        self.digit_checkbox = QtWidgets.QCheckBox(mean_form)
        self.digit_checkbox.setChecked(True)
        self.digit_checkbox.setObjectName("digit_checkbox")
        self.horizontalLayout.addWidget(self.digit_checkbox)
        self.lineEdit = QtWidgets.QLineEdit(mean_form)
        self.lineEdit.setObjectName("lineEdit")
        self.horizontalLayout.addWidget(self.lineEdit)
        self.data_checkbox = QtWidgets.QCheckBox(mean_form)
        self.data_checkbox.setObjectName("data_checkbox")
        self.horizontalLayout.addWidget(self.data_checkbox)
        self.frame = QtWidgets.QFrame(mean_form)
        self.frame.setFrameShape(QtWidgets.QFrame.NoFrame)
        self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
        self.frame.setObjectName("frame")
        self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.frame)
        self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0)
        self.horizontalLayout_2.setSpacing(2)
        self.horizontalLayout_2.setObjectName("horizontalLayout_2")
        self.graph_combobox = QtWidgets.QComboBox(self.frame)
        self.graph_combobox.setObjectName("graph_combobox")
        self.horizontalLayout_2.addWidget(self.graph_combobox)
        self.set_combobox = QtWidgets.QComboBox(self.frame)
        self.set_combobox.setSizeAdjustPolicy(QtWidgets.QComboBox.AdjustToContents)
        self.set_combobox.setObjectName("set_combobox")
        self.horizontalLayout_2.addWidget(self.set_combobox)
        self.horizontalLayout.addWidget(self.frame)

        self.retranslateUi(mean_form)
        QtCore.QMetaObject.connectSlotsByName(mean_form)

    def retranslateUi(self, mean_form):
        _translate = QtCore.QCoreApplication.translate
        mean_form.setWindowTitle(_translate("mean_form", "Form"))
        self.label.setText(_translate("mean_form", "TextLabel"))
        self.digit_checkbox.setText(_translate("mean_form", "Digit"))
        self.lineEdit.setText(_translate("mean_form", "1"))
        self.data_checkbox.setText(_translate("mean_form", "Data"))