about.py 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # -*- coding: utf-8 -*-
  2. # Form implementation generated from reading ui file 'about.ui'
  3. #
  4. # Created by: PyQt5 UI code generator 5.5.1
  5. #
  6. # WARNING! All changes made in this file will be lost!
  7. from PyQt5 import QtCore, QtGui, QtWidgets
  8. class Ui_About(object):
  9. def setupUi(self, About):
  10. About.setObjectName("About")
  11. About.resize(330, 160)
  12. About.setMinimumSize(QtCore.QSize(330, 160))
  13. About.setMaximumSize(QtCore.QSize(330, 160))
  14. icon = QtGui.QIcon()
  15. icon.addPixmap(QtGui.QPixmap("resources/icon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
  16. About.setWindowIcon(icon)
  17. About.setAccessibleName("")
  18. self.verticalLayout = QtWidgets.QVBoxLayout(About)
  19. self.verticalLayout.setObjectName("verticalLayout")
  20. self.gridLayout = QtWidgets.QGridLayout()
  21. self.gridLayout.setObjectName("gridLayout")
  22. self.lblIcon = QtWidgets.QLabel(About)
  23. self.lblIcon.setText("")
  24. self.lblIcon.setPixmap(QtGui.QPixmap("resources/icon.ico"))
  25. self.lblIcon.setObjectName("lblIcon")
  26. self.gridLayout.addWidget(self.lblIcon, 0, 0, 1, 1)
  27. self.lblAbout = QtWidgets.QLabel(About)
  28. self.lblAbout.setWordWrap(True)
  29. self.lblAbout.setObjectName("lblAbout")
  30. self.gridLayout.addWidget(self.lblAbout, 0, 1, 1, 1)
  31. self.verticalLayout.addLayout(self.gridLayout)
  32. spacerItem = QtWidgets.QSpacerItem(20, 20, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
  33. self.verticalLayout.addItem(spacerItem)
  34. self.buttonBox = QtWidgets.QDialogButtonBox(About)
  35. self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
  36. self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Close)
  37. self.buttonBox.setObjectName("buttonBox")
  38. self.verticalLayout.addWidget(self.buttonBox)
  39. self.retranslateUi(About)
  40. self.buttonBox.accepted.connect(About.accept)
  41. self.buttonBox.rejected.connect(About.reject)
  42. QtCore.QMetaObject.connectSlotsByName(About)
  43. def retranslateUi(self, About):
  44. _translate = QtCore.QCoreApplication.translate
  45. About.setWindowTitle(_translate("About", "About"))
  46. self.lblAbout.setText(_translate("About", "<html><head/><body><p><span style=\" font-weight:600;\">OrdersGuru Signer</span></p><p>Application for signing and arranging orders documents.</p><p>Created by <a href=\"http://jodlajodla.si/\"><span style=\" text-decoration: underline; color:#0000ff;\">Jan Sušnik</span></a>, 2017</p></body></html>"))