5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to enter the connection parameters. |
7 Module implementing a dialog to enter the connection parameters. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtCore import * |
10 from PyQt4.QtCore import pyqtSlot |
11 from PyQt4.QtGui import * |
11 from PyQt4.QtGui import QDialog, QDialogButtonBox |
12 from PyQt4.QtSql import QSqlDatabase |
12 from PyQt4.QtSql import QSqlDatabase |
13 |
13 |
14 from E5Gui.E5Completers import E5FileCompleter |
14 from E5Gui.E5Completers import E5FileCompleter |
15 from E5Gui import E5FileDialog |
15 from E5Gui import E5FileDialog |
16 |
16 |