CodeTemplates/impl.py.tmpl

changeset 0
de9c2efb9d02
child 74
f0c0e4638a0f
equal deleted inserted replaced
-1:000000000000 0:de9c2efb9d02
1 # -*- coding: utf-8 -*-
2
3 """
4 Module implementing $CLASSNAME$.
5 """
6
7 from PyQt4.QtCore import pyqtSlot
8 from PyQt4.QtGui import $SUPERCLASS$
9
10 from Ui_$FORMFILE$ import Ui_$FORMCLASS$
11
12 class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$):
13 """
14 Class documentation goes here.
15 """
16 def __init__(self, parent = None):
17 """
18 Constructor
19 """
20 $SUPERCLASS$.__init__(self, parent)
21 self.setupUi(self)

eric ide

mercurial