2012-11-19 20:45:05 +01:00
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'about.ui'
#
2013-03-11 17:02:11 +01:00
# Created: Mon Mar 11 11:19:35 2013
2013-01-31 19:35:36 +01:00
# by: PyQt4 UI code generator 4.9.4
2012-11-19 20:45:05 +01:00
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore , QtGui
try :
_fromUtf8 = QtCore . QString . fromUtf8
except AttributeError :
_fromUtf8 = lambda s : s
class Ui_aboutDialog ( object ) :
def setupUi ( self , aboutDialog ) :
aboutDialog . setObjectName ( _fromUtf8 ( " aboutDialog " ) )
2013-01-22 06:21:32 +01:00
aboutDialog . resize ( 360 , 315 )
2012-11-19 20:45:05 +01:00
self . buttonBox = QtGui . QDialogButtonBox ( aboutDialog )
2013-01-22 06:21:32 +01:00
self . buttonBox . setGeometry ( QtCore . QRect ( 20 , 280 , 311 , 32 ) )
2012-11-19 20:45:05 +01:00
self . buttonBox . setOrientation ( QtCore . Qt . Horizontal )
self . buttonBox . setStandardButtons ( QtGui . QDialogButtonBox . Ok )
self . buttonBox . setObjectName ( _fromUtf8 ( " buttonBox " ) )
self . label = QtGui . QLabel ( aboutDialog )
self . label . setGeometry ( QtCore . QRect ( 70 , 126 , 111 , 20 ) )
font = QtGui . QFont ( )
font . setBold ( True )
font . setWeight ( 75 )
self . label . setFont ( font )
self . label . setAlignment ( QtCore . Qt . AlignRight | QtCore . Qt . AlignTrailing | QtCore . Qt . AlignVCenter )
self . label . setObjectName ( _fromUtf8 ( " label " ) )
self . labelVersion = QtGui . QLabel ( aboutDialog )
self . labelVersion . setGeometry ( QtCore . QRect ( 190 , 126 , 161 , 20 ) )
self . labelVersion . setObjectName ( _fromUtf8 ( " labelVersion " ) )
self . label_2 = QtGui . QLabel ( aboutDialog )
self . label_2 . setGeometry ( QtCore . QRect ( 10 , 150 , 341 , 20 ) )
self . label_2 . setAlignment ( QtCore . Qt . AlignCenter )
self . label_2 . setObjectName ( _fromUtf8 ( " label_2 " ) )
self . label_3 = QtGui . QLabel ( aboutDialog )
2013-01-31 19:35:36 +01:00
self . label_3 . setGeometry ( QtCore . QRect ( 20 , 200 , 331 , 71 ) )
2012-11-19 20:45:05 +01:00
self . label_3 . setWordWrap ( True )
2013-03-11 17:02:11 +01:00
self . label_3 . setOpenExternalLinks ( True )
2012-11-19 20:45:05 +01:00
self . label_3 . setObjectName ( _fromUtf8 ( " label_3 " ) )
self . label_5 = QtGui . QLabel ( aboutDialog )
self . label_5 . setGeometry ( QtCore . QRect ( 10 , 180 , 341 , 20 ) )
self . label_5 . setAlignment ( QtCore . Qt . AlignCenter )
self . label_5 . setObjectName ( _fromUtf8 ( " label_5 " ) )
self . retranslateUi ( aboutDialog )
QtCore . QObject . connect ( self . buttonBox , QtCore . SIGNAL ( _fromUtf8 ( " accepted() " ) ) , aboutDialog . accept )
QtCore . QObject . connect ( self . buttonBox , QtCore . SIGNAL ( _fromUtf8 ( " rejected() " ) ) , aboutDialog . reject )
QtCore . QMetaObject . connectSlotsByName ( aboutDialog )
def retranslateUi ( self , aboutDialog ) :
aboutDialog . setWindowTitle ( QtGui . QApplication . translate ( " aboutDialog " , " About " , None , QtGui . QApplication . UnicodeUTF8 ) )
self . label . setText ( QtGui . QApplication . translate ( " aboutDialog " , " PyBitmessage " , None , QtGui . QApplication . UnicodeUTF8 ) )
self . labelVersion . setText ( QtGui . QApplication . translate ( " aboutDialog " , " version ? " , None , QtGui . QApplication . UnicodeUTF8 ) )
2013-01-31 19:35:36 +01:00
self . label_2 . setText ( QtGui . QApplication . translate ( " aboutDialog " , " Copyright © 2013 Jonathan Warren " , None , QtGui . QApplication . UnicodeUTF8 ) )
self . label_3 . setText ( QtGui . QApplication . translate ( " aboutDialog " , " <html><head/><body><p>Distributed under the MIT/X11 software license; see <a href= \" http://www.opensource.org/licenses/mit-license.php \" ><span style= \" text-decoration: underline; color:#0000ff; \" >http://www.opensource.org/licenses/mit-license.php</span></a></p></body></html> " , None , QtGui . QApplication . UnicodeUTF8 ) )
2012-11-19 20:45:05 +01:00
self . label_5 . setText ( QtGui . QApplication . translate ( " aboutDialog " , " This is Beta software. " , None , QtGui . QApplication . UnicodeUTF8 ) )