6 """ |
6 """ |
7 Module implementing a dialog to enter some text. |
7 Module implementing a dialog to enter some text. |
8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel, \ |
11 from PyQt5.QtWidgets import ( |
12 QLineEdit |
12 QDialog, QDialogButtonBox, QVBoxLayout, QLabel, QLineEdit |
|
13 ) |
13 |
14 |
14 from E5Gui.E5LineEdit import E5ClearableLineEdit |
15 from E5Gui.E5LineEdit import E5ClearableLineEdit |
15 |
16 |
16 |
17 |
17 class E5TextInputDialog(QDialog): |
18 class E5TextInputDialog(QDialog): |