1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 __VERSION__="ete2-2.0rev104"
24
25
26
27
28
29
30
31
32
33 try:
34 from PyQt4 import QtCore, QtGui
35 except ImportError:
36 import QtCore, QtGui
37
40 About.setObjectName("About")
41 About.resize(462, 249)
42 self.verticalLayoutWidget = QtGui.QWidget(About)
43 self.verticalLayoutWidget.setGeometry(QtCore.QRect(10, 0, 441, 208))
44 self.verticalLayoutWidget.setObjectName("verticalLayoutWidget")
45 self.verticalLayout = QtGui.QVBoxLayout(self.verticalLayoutWidget)
46 self.verticalLayout.setObjectName("verticalLayout")
47 self.label = QtGui.QLabel(self.verticalLayoutWidget)
48 self.label.setObjectName("label")
49 self.verticalLayout.addWidget(self.label)
50 self.version = QtGui.QLabel(self.verticalLayoutWidget)
51 self.version.setObjectName("version")
52 self.verticalLayout.addWidget(self.version)
53
54 self.retranslateUi(About)
55 QtCore.QMetaObject.connectSlotsByName(About)
56
58 About.setWindowTitle(QtGui.QApplication.translate("About", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
59 self.label.setText(QtGui.QApplication.translate("About", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
60 "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
61 "p, li { white-space: pre-wrap; }\n"
62 "</style></head><body style=\" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
63 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><img src=\":/ete icons/ete_logo.png\" /></p>\n"
64 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"><span style=\" font-size:11pt;\">ETE: a python Environment for Tree Exploration</span></p>\n"
65 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:11pt; font-weight:600;\"><a href=\"http://ete.cgenomics.org\"><span style=\" text-decoration: underline; color:#0057ae;\">http://ete.cgenomics.org</span></a></p>\n"
66 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\">Copyright (C) 2008-2009 </p>\n"
67 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"><span style=\" font-weight:400;\">Created by Jaime Huerta-Cepas</span></p>\n"
68 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">jhcepas@crg.es</p>\n"
69 "<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;\"></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
70 self.version.setText(QtGui.QApplication.translate("About", "VERSION", None, QtGui.QApplication.UnicodeUTF8))
71
72 import ete_resources_rc
73