File: about4.py

package info (click to toggle)
epigrass 2.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 12,204 kB
  • ctags: 2,026
  • sloc: python: 10,617; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-

"""
Module implementing aboutDialog.
"""

from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSignature

from Ui_about4 import Ui_aboutDialog

class aboutDialog(QDialog, Ui_aboutDialog):
    """
    Class documentation goes here.
    """
    def __init__(self, parent = None):
        """
        Constructor
        """
        QDialog.__init__(self, parent)
        self.setupUi(self)