13 |
13 |
14 class SqlConnectionWidget(QWidget): |
14 class SqlConnectionWidget(QWidget): |
15 """ |
15 """ |
16 Class implementing a widget showing the SQL connections. |
16 Class implementing a widget showing the SQL connections. |
17 |
17 |
18 @signal tableActivated(string) emitted after the entry for a table has been activated |
18 @signal tableActivated(str) emitted after the entry for a table has been activated |
19 @signal schemaRequested(string) emitted when the schema display is requested |
19 @signal schemaRequested(str) emitted when the schema display is requested |
20 @signal cleared() emitted after the connection tree has been cleared |
20 @signal cleared() emitted after the connection tree has been cleared |
21 """ |
21 """ |
22 tableActivated = pyqtSignal(str) |
22 tableActivated = pyqtSignal(str) |
23 schemaRequested = pyqtSignal(str) |
23 schemaRequested = pyqtSignal(str) |
24 cleared = pyqtSignal() |
24 cleared = pyqtSignal() |