qwad/GUI/AboutQwad.py
Christopher Roy Bratusek bf9ac2ce00 bump version to 0.9
2013-09-20 21:59:58 +02: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.9"
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())