settings.py 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- coding: utf-8 -*-
  2. # Form implementation generated from reading ui file 'settings.ui'
  3. #
  4. # Created by: PyQt5 UI code generator 5.15.6
  5. #
  6. # WARNING: Any manual changes made to this file will be lost when pyuic5 is
  7. # run again. Do not edit this file unless you know what you are doing.
  8. from PyQt5 import QtCore, QtGui, QtWidgets
  9. class Ui_Form(object):
  10. def setupUi(self, Form):
  11. Form.setObjectName("Form")
  12. Form.resize(668, 300)
  13. self.verticalLayout = QtWidgets.QVBoxLayout(Form)
  14. self.verticalLayout.setContentsMargins(0, 0, 0, 0)
  15. self.verticalLayout.setObjectName("verticalLayout")
  16. self.verticalLayout_2 = QtWidgets.QVBoxLayout()
  17. self.verticalLayout_2.setObjectName("verticalLayout_2")
  18. self.formLayout = QtWidgets.QFormLayout()
  19. self.formLayout.setObjectName("formLayout")
  20. self.label = QtWidgets.QLabel(Form)
  21. self.label.setObjectName("label")
  22. self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label)
  23. self.lineEdit = QtWidgets.QLineEdit(Form)
  24. self.lineEdit.setObjectName("lineEdit")
  25. self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.lineEdit)
  26. self.label_2 = QtWidgets.QLabel(Form)
  27. self.label_2.setObjectName("label_2")
  28. self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_2)
  29. self.lineEdit_2 = QtWidgets.QLineEdit(Form)
  30. self.lineEdit_2.setObjectName("lineEdit_2")
  31. self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.lineEdit_2)
  32. self.verticalLayout_2.addLayout(self.formLayout)
  33. self.apply_button = QtWidgets.QPushButton(Form)
  34. self.apply_button.setObjectName("apply_button")
  35. self.verticalLayout_2.addWidget(self.apply_button)
  36. self.verticalLayout.addLayout(self.verticalLayout_2)
  37. self.retranslateUi(Form)
  38. QtCore.QMetaObject.connectSlotsByName(Form)
  39. def retranslateUi(self, Form):
  40. _translate = QtCore.QCoreApplication.translate
  41. Form.setWindowTitle(_translate("Form", "Form"))
  42. self.label.setText(_translate("Form", "TextLabel"))
  43. self.label_2.setText(_translate("Form", "TextLabel"))
  44. self.apply_button.setText(_translate("Form", "Apply"))