Project/IdlCompilerDefineNameDialog.py

branch
corba_options
changeset 6442
9d42b6c08a27
child 6445
2b022e5ba54c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Project/IdlCompilerDefineNameDialog.py	Sat Jul 28 19:14:11 2018 +0200
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+
+"""
+Module implementing IdlCompilerDefineNameDialog.
+"""
+
+from PyQt5.QtCore import pyqtSlot
+from PyQt5.QtWidgets import QDialog
+
+from .Ui_IdlCompilerDefineNameDialog import Ui_IdlCompilerDefineNameDialog
+
+
+class IdlCompilerDefineNameDialog(QDialog, Ui_IdlCompilerDefineNameDialog):
+    """
+    Class documentation goes here.
+    """
+    def __init__(self, parent=None):
+        """
+        Constructor
+        
+        @param parent reference to the parent widget
+        @type QWidget
+        """
+        super(IdlCompilerDefineNameDialog, self).__init__(parent)
+        self.setupUi(self)
+    
+    @pyqtSlot(str)
+    def on_nameEdit_textChanged(self, p0):
+        """
+        Slot documentation goes here.
+        
+        @param p0 DESCRIPTION
+        @type str
+        """
+        # TODO: not implemented yet
+        raise NotImplementedError

eric ide

mercurial