eric6/CodeTemplates/impl_pyside2.py.tmpl

changeset 6942
2602857055c5
parent 6291
94e0e688dcad
child 8033
21fd39d6a6ee
diff -r f99d60d6b59b -r 2602857055c5 eric6/CodeTemplates/impl_pyside2.py.tmpl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/CodeTemplates/impl_pyside2.py.tmpl	Sun Apr 14 15:09:21 2019 +0200
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+
+"""
+Module implementing $CLASSNAME$.
+"""
+
+from PySide2.QtCore import Slot
+from PySide2.QtWidgets import $SUPERCLASS$
+
+from .Ui_$FORMFILE$ import Ui_$FORMCLASS$
+
+
+class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$):
+    """
+    Class documentation goes here.
+    """
+    def __init__(self, parent=None):
+        """
+        Constructor
+        
+        @param parent reference to the parent widget
+        @type QWidget
+        """
+        super($CLASSNAME$, self).__init__(parent)
+        self.setupUi(self)

eric ide

mercurial