5 |
5 |
6 """ |
6 """ |
7 Module implementing a widget showing the SQL connections. |
7 Module implementing a widget showing the SQL connections. |
8 """ |
8 """ |
9 |
9 |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
10 from __future__ import unicode_literals |
11 |
11 |
12 from PyQt4.QtCore import pyqtSignal, Qt, qVersion |
12 from PyQt4.QtCore import pyqtSignal, Qt, qVersion |
13 from PyQt4.QtGui import QWidget, QHeaderView, QTreeWidget, QVBoxLayout, \ |
13 from PyQt4.QtGui import QWidget, QHeaderView, QTreeWidget, QVBoxLayout, \ |
14 QTreeWidgetItem, QAction |
14 QTreeWidgetItem, QAction |
15 from PyQt4.QtSql import QSqlDatabase |
15 from PyQt4.QtSql import QSqlDatabase |