Sat, 28 Jul 2018 19:14:11 +0200
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