12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # -*- coding: utf-8 -*-
- # Form implementation generated from reading ui file 'settings.ui'
- #
- # Created by: PyQt5 UI code generator 5.15.6
- #
- # 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_Form(object):
- def setupUi(self, Form):
- Form.setObjectName("Form")
- Form.resize(668, 300)
- self.verticalLayout = QtWidgets.QVBoxLayout(Form)
- self.verticalLayout.setContentsMargins(0, 0, 0, 0)
- self.verticalLayout.setObjectName("verticalLayout")
- self.verticalLayout_2 = QtWidgets.QVBoxLayout()
- self.verticalLayout_2.setObjectName("verticalLayout_2")
- self.formLayout = QtWidgets.QFormLayout()
- self.formLayout.setObjectName("formLayout")
- self.label = QtWidgets.QLabel(Form)
- self.label.setObjectName("label")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label)
- self.lineEdit = QtWidgets.QLineEdit(Form)
- self.lineEdit.setObjectName("lineEdit")
- self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.lineEdit)
- self.label_2 = QtWidgets.QLabel(Form)
- self.label_2.setObjectName("label_2")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_2)
- self.lineEdit_2 = QtWidgets.QLineEdit(Form)
- self.lineEdit_2.setObjectName("lineEdit_2")
- self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.lineEdit_2)
- self.verticalLayout_2.addLayout(self.formLayout)
- self.apply_button = QtWidgets.QPushButton(Form)
- self.apply_button.setObjectName("apply_button")
- self.verticalLayout_2.addWidget(self.apply_button)
- self.verticalLayout.addLayout(self.verticalLayout_2)
- self.retranslateUi(Form)
- QtCore.QMetaObject.connectSlotsByName(Form)
- def retranslateUi(self, Form):
- _translate = QtCore.QCoreApplication.translate
- Form.setWindowTitle(_translate("Form", "Form"))
- self.label.setText(_translate("Form", "TextLabel"))
- self.label_2.setText(_translate("Form", "TextLabel"))
- self.apply_button.setText(_translate("Form", "Apply"))
|