|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 """ |
|
4 Module implementing IdlCompilerDefineNameDialog. |
|
5 """ |
|
6 |
|
7 from PyQt5.QtCore import pyqtSlot |
|
8 from PyQt5.QtWidgets import QDialog |
|
9 |
|
10 from .Ui_IdlCompilerDefineNameDialog import Ui_IdlCompilerDefineNameDialog |
|
11 |
|
12 |
|
13 class IdlCompilerDefineNameDialog(QDialog, Ui_IdlCompilerDefineNameDialog): |
|
14 """ |
|
15 Class documentation goes here. |
|
16 """ |
|
17 def __init__(self, parent=None): |
|
18 """ |
|
19 Constructor |
|
20 |
|
21 @param parent reference to the parent widget |
|
22 @type QWidget |
|
23 """ |
|
24 super(IdlCompilerDefineNameDialog, self).__init__(parent) |
|
25 self.setupUi(self) |
|
26 |
|
27 @pyqtSlot(str) |
|
28 def on_nameEdit_textChanged(self, p0): |
|
29 """ |
|
30 Slot documentation goes here. |
|
31 |
|
32 @param p0 DESCRIPTION |
|
33 @type str |
|
34 """ |
|
35 # TODO: not implemented yet |
|
36 raise NotImplementedError |