qwad/GUI/AboutQwad.py
Christopher Roy Bratusek 248c4e7b1e bump version to 0.5
2012-11-10 18:12:00 +01:00

29 lines
604 B
Python

# -*- coding: utf-8 -*-
"""
Module implementing AboutQwad.
"""
from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSignature
from Ui_AboutQwad import Ui_Dialog
def Version():
return "0.5"
def Author():
return "Christopher Roy Bratusek <nano@tuxfamily.org>"
class AboutQwad(QDialog, Ui_Dialog):
"""
Class documentation goes here.
"""
def __init__(self, parent = None):
"""
Constructor
"""
QDialog.__init__(self, parent)
self.setupUi(self)
self.versionNumber.setText(Version())
self.AuthorName.setText(Author())