Project/IdlCompilerDefineNameDialog.py

Sat, 28 Jul 2018 19:14:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 28 Jul 2018 19:14:11 +0200
branch
corba_options
changeset 6442
9d42b6c08a27
child 6445
2b022e5ba54c
permissions
-rw-r--r--

IDLCompilerOptionsDialog: started to implement a dialog to enter options for the IDL compiler.

# -*- 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