1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'mageiaSyncAbout.ui'
#
# Created: Sat Apr 4 09:01:49 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_aboutDialog(object):
def setupUi(self, aboutDialog):
aboutDialog.setObjectName("aboutDialog")
aboutDialog.resize(452, 353)
aboutDialog.setWindowTitle("mageiaSync")
self.verticalLayout = QtWidgets.QVBoxLayout(aboutDialog)
self.verticalLayout.setObjectName("verticalLayout")
self.verticalLayout_3 = QtWidgets.QVBoxLayout()
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.label_4 = QtWidgets.QLabel(aboutDialog)
self.label_4.setMaximumSize(QtCore.QSize(200, 200))
self.label_4.setText("")
self.label_4.setPixmap(QtGui.QPixmap("/usr/share/icons/hicolor/scalable/apps/mageiasync.svg"))
self.label_4.setScaledContents(True)
self.label_4.setAlignment(QtCore.Qt.AlignCenter)
self.label_4.setContentsMargins(30, 30, 30, 30)
self.label_4.setIndent(0)
self.label_4.setObjectName("label_4")
self.horizontalLayout.addWidget(self.label_4)
self.verticalLayout_3.addLayout(self.horizontalLayout)
self.label = QtWidgets.QLabel(aboutDialog)
font = QtGui.QFont()
font.setPointSize(11)
self.label.setFont(font)
self.label.setLocale(QtCore.QLocale(QtCore.QLocale.English, QtCore.QLocale.UnitedStates))
self.label.setText("mageiaSync")
self.label.setAlignment(QtCore.Qt.AlignCenter)
self.label.setObjectName("label")
self.verticalLayout_3.addWidget(self.label)
self.label_2 = QtWidgets.QLabel(aboutDialog)
self.label_2.setAlignment(QtCore.Qt.AlignCenter)
self.label_2.setObjectName("label_2")
self.verticalLayout_3.addWidget(self.label_2)
self.label_3 = QtWidgets.QLabel(aboutDialog)
self.label_3.setAlignment(QtCore.Qt.AlignCenter)
self.label_3.setObjectName("label_3")
self.verticalLayout_3.addWidget(self.label_3)
self.verticalLayout.addLayout(self.verticalLayout_3)
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.creditsButton = QtWidgets.QPushButton(aboutDialog)
self.creditsButton.setObjectName("creditsButton")
self.horizontalLayout_2.addWidget(self.creditsButton)
self.buttonBox = QtWidgets.QDialogButtonBox(aboutDialog)
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(aboutDialog)
self.buttonBox.accepted.connect(aboutDialog.close)
QtCore.QMetaObject.connectSlotsByName(aboutDialog)
def retranslateUi(self, aboutDialog):
_translate = QtCore.QCoreApplication.translate
self.label_2.setText(_translate("aboutDialog", "A tool for loading ISO images. It is a frontend to rsync."))
self.label_3.setText(_translate("aboutDialog", "License: GNU GPL v3"))
self.creditsButton.setText(_translate("aboutDialog", "Credits"))
|