Sat, 01 Sep 2018 10:39:08 +0200
Re-merged with "default" branch in order to include some last minute fixes in the next release.
1139 | 1 | # -*- coding: utf-8 -*- |
2 | ||
3 | """ | |
4 | Module implementing $CLASSNAME$. | |
5 | """ | |
6 | ||
7 | from PyQt4.QtCore import pyqtSignature | |
8 | from PyQt4.QtGui import $SUPERCLASS$ | |
9 | ||
10 | from .Ui_$FORMFILE$ import Ui_$FORMCLASS$ | |
11 | ||
12 | ||
13 | class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): | |
14 | """ | |
15 | Class documentation goes here. | |
16 | """ | |
17 | def __init__(self, parent=None): | |
18 | """ | |
19 | Constructor | |
20 | ||
4484
5c9952e29895
Changed the dialog code generation templates to support the updated source documentation system.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
1139
diff
changeset
|
21 | @param parent reference to the parent widget |
5c9952e29895
Changed the dialog code generation templates to support the updated source documentation system.
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
1139
diff
changeset
|
22 | @type QWidget |
1139 | 23 | """ |
24 | $SUPERCLASS$.__init__(self, parent) | |
25 | self.setupUi(self) |