CodeTemplates/impl.py.tmpl

Sat, 08 May 2010 10:18:24 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 08 May 2010 10:18:24 +0000
changeset 223
2aa606e16381
parent 74
f0c0e4638a0f
child 370
0c137bb40ac7
permissions
-rw-r--r--

Prepared new snapshot.

# -*- coding: utf-8 -*-

"""
Module implementing $CLASSNAME$.
"""

from PyQt4.QtCore import pyqtSlot
from PyQt4.QtGui import $SUPERCLASS$

from .Ui_$FORMFILE$ import Ui_$FORMCLASS$

class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$):
    """
    Class documentation goes here.
    """
    def __init__(self, parent = None):
        """
        Constructor
        """
        $SUPERCLASS$.__init__(self, parent)
        self.setupUi(self)

eric ide

mercurial