diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2015-03-30 22:03:08 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2015-03-30 22:03:08 +0200 |
commit | e0f5dc52c99b2f6ab40544c261f50bdd9113a53a (patch) | |
tree | 7a88f0bf7635cb3316ea947434705f901185e8fb /mageiaSync/mageiaSyncCredits.py | |
parent | 842ccc7c6d710de856ccdb457e20d15b4ee488bd (diff) | |
download | MageiaSync-e0f5dc52c99b2f6ab40544c261f50bdd9113a53a.tar MageiaSync-e0f5dc52c99b2f6ab40544c261f50bdd9113a53a.tar.gz MageiaSync-e0f5dc52c99b2f6ab40544c261f50bdd9113a53a.tar.bz2 MageiaSync-e0f5dc52c99b2f6ab40544c261f50bdd9113a53a.tar.xz MageiaSync-e0f5dc52c99b2f6ab40544c261f50bdd9113a53a.zip |
Add About and Help dialog
Diffstat (limited to 'mageiaSync/mageiaSyncCredits.py')
-rw-r--r-- | mageiaSync/mageiaSyncCredits.py | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mageiaSync/mageiaSyncCredits.py b/mageiaSync/mageiaSyncCredits.py new file mode 100644 index 0000000..3094aff --- /dev/null +++ b/mageiaSync/mageiaSyncCredits.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'mageiaSyncCredits.ui' +# +# Created: Sun Mar 29 14:32:39 2015 +# by: PyQt5 UI code generator 5.1.1 +# +# WARNING! All changes made in this file will be lost! + +from PyQt5 import QtCore, QtGui, QtWidgets + +class Ui_creditsDialog(object): + def setupUi(self, creditsDialog): + creditsDialog.setObjectName("creditsDialog") + creditsDialog.resize(452, 346) + self.verticalLayout = QtWidgets.QVBoxLayout(creditsDialog) + self.verticalLayout.setObjectName("verticalLayout") + self.verticalLayout_3 = QtWidgets.QVBoxLayout() + self.verticalLayout_3.setObjectName("verticalLayout_3") + self.horizontalLayout = QtWidgets.QHBoxLayout() + self.horizontalLayout.setObjectName("horizontalLayout") + self.verticalLayout_3.addLayout(self.horizontalLayout) + self.Readme = QtWidgets.QTextBrowser(creditsDialog) + self.Readme.setObjectName("Readme") + self.verticalLayout_3.addWidget(self.Readme) + self.verticalLayout.addLayout(self.verticalLayout_3) + self.horizontalLayout_2 = QtWidgets.QHBoxLayout() + self.horizontalLayout_2.setObjectName("horizontalLayout_2") + self.buttonBox = QtWidgets.QDialogButtonBox(creditsDialog) + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Ok) + self.buttonBox.setCenterButtons(True) + self.buttonBox.setObjectName("buttonBox") + self.horizontalLayout_2.addWidget(self.buttonBox) + self.verticalLayout.addLayout(self.horizontalLayout_2) + + self.retranslateUi(creditsDialog) + self.buttonBox.accepted.connect(creditsDialog.close) + QtCore.QMetaObject.connectSlotsByName(creditsDialog) + + def retranslateUi(self, creditsDialog): + _translate = QtCore.QCoreApplication.translate + creditsDialog.setWindowTitle(_translate("creditsDialog", "MageiaSync")) + |