|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
# Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/About2.ui'
|
|
|
#
|
|
|
# Created: Mon May 24 08:52:42 2010
|
|
|
# by: PyQt4 UI code generator 4.6
|
|
|
#
|
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
|
|
|
|
class Ui_About(object):
|
|
|
def setupUi(self, About):
|
|
|
About.setObjectName("About")
|
|
|
About.resize(250, 230)
|
|
|
About.setMinimumSize(QtCore.QSize(250, 230))
|
|
|
About.setMaximumSize(QtCore.QSize(250, 230))
|
|
|
self.verticalLayout = QtGui.QVBoxLayout(About)
|
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
|
self.textEdit = QtGui.QTextEdit(About)
|
|
|
self.textEdit.setMaximumSize(QtCore.QSize(16777215, 16777215))
|
|
|
self.textEdit.setReadOnly(True)
|
|
|
self.textEdit.setObjectName("textEdit")
|
|
|
self.verticalLayout.addWidget(self.textEdit)
|
|
|
self.btnOK = QtGui.QPushButton(About)
|
|
|
self.btnOK.setObjectName("btnOK")
|
|
|
self.verticalLayout.addWidget(self.btnOK)
|
|
|
|
|
|
self.retranslateUi(About)
|
|
|
QtCore.QObject.connect(self.btnOK, QtCore.SIGNAL("clicked()"), About.close)
|
|
|
QtCore.QMetaObject.connectSlotsByName(About)
|
|
|
|
|
|
def retranslateUi(self, About):
|
|
|
About.setWindowTitle(QtGui.QApplication.translate("About", "About", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
self.textEdit.setHtml(QtGui.QApplication.translate("About", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
|
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
|
|
"p, li { white-space: pre-wrap; }\n"
|
|
|
"</style></head><body style=\" font-family:\'Sans\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">JRO BACKUP MANAGER</span></p>\n"
|
|
|
"<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"></p>\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Author:</span></p>\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Ricardo Farino Alonso Rondón</span></p>\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">ricardo.alonso@jro.igp.gob.pe</span></p>\n"
|
|
|
"<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-style:italic;\"></p>\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca Radio Observatory</span></p>\n"
|
|
|
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca - May 2010</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
self.btnOK.setText(QtGui.QApplication.translate("About", "OK", None, QtGui.QApplication.UnicodeUTF8))
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
import sys
|
|
|
app = QtGui.QApplication(sys.argv)
|
|
|
About = QtGui.QDialog()
|
|
|
ui = Ui_About()
|
|
|
ui.setupUi(About)
|
|
|
About.show()
|
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
|