qwad/GUI/AboutQwad.py

29 lines
608 B
Python
Raw Normal View History

2012-08-21 19:28:14 +02:00
# -*- coding: utf-8 -*-
"""
Module implementing AboutQwad.
"""
from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSignature
from Ui_AboutQwad import Ui_Dialog
def Version():
2012-08-22 21:47:43 +02:00
return "0.4~git"
2012-08-21 19:28:14 +02:00
def Author():
2012-08-22 21:47:43 +02:00
return "Christopher Roy Bratusek <nano@tuxfamily.org>"
2012-08-21 19:28:14 +02:00
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())