1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the demonstration applications of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:BSD$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** BSD License Usage |
18 | ** Alternatively, you may use this file under the terms of the BSD license |
19 | ** as follows: |
20 | ** |
21 | ** "Redistribution and use in source and binary forms, with or without |
22 | ** modification, are permitted provided that the following conditions are |
23 | ** met: |
24 | ** * Redistributions of source code must retain the above copyright |
25 | ** notice, this list of conditions and the following disclaimer. |
26 | ** * Redistributions in binary form must reproduce the above copyright |
27 | ** notice, this list of conditions and the following disclaimer in |
28 | ** the documentation and/or other materials provided with the |
29 | ** distribution. |
30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
31 | ** contributors may be used to endorse or promote products derived |
32 | ** from this software without specific prior written permission. |
33 | ** |
34 | ** |
35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
46 | ** |
47 | ** $QT_END_LICENSE$ |
48 | ** |
49 | ****************************************************************************/ |
50 | |
51 | #include "connectionwidget.h" |
52 | |
53 | #include <QtWidgets> |
54 | #include <QtSql> |
55 | |
56 | ConnectionWidget::ConnectionWidget(QWidget *parent) |
57 | : QWidget(parent) |
58 | { |
59 | QVBoxLayout *layout = new QVBoxLayout(this); |
60 | tree = new QTreeWidget(this); |
61 | tree->setObjectName(QLatin1String("tree" )); |
62 | tree->setHeaderLabels(QStringList(tr("database" ))); |
63 | tree->header()->setSectionResizeMode(QHeaderView::Stretch); |
64 | QAction *refreshAction = new QAction(tr("Refresh" ), tree); |
65 | metaDataAction = new QAction(tr("Show Schema" ), tree); |
66 | connect(refreshAction, &QAction::triggered, this, &ConnectionWidget::refresh); |
67 | connect(metaDataAction, &QAction::triggered, this, &ConnectionWidget::showMetaData); |
68 | tree->addAction(refreshAction); |
69 | tree->addAction(metaDataAction); |
70 | tree->setContextMenuPolicy(Qt::ActionsContextMenu); |
71 | |
72 | layout->addWidget(tree); |
73 | |
74 | QMetaObject::connectSlotsByName(this); |
75 | } |
76 | |
77 | ConnectionWidget::~ConnectionWidget() |
78 | { |
79 | } |
80 | |
81 | static QString qDBCaption(const QSqlDatabase &db) |
82 | { |
83 | QString nm = db.driverName(); |
84 | nm.append(QLatin1Char(':')); |
85 | if (!db.userName().isEmpty()) |
86 | nm.append(db.userName()).append(QLatin1Char('@')); |
87 | nm.append(db.databaseName()); |
88 | return nm; |
89 | } |
90 | |
91 | void ConnectionWidget::refresh() |
92 | { |
93 | tree->clear(); |
94 | QStringList connectionNames = QSqlDatabase::connectionNames(); |
95 | |
96 | bool gotActiveDb = false; |
97 | for (int i = 0; i < connectionNames.count(); ++i) { |
98 | QTreeWidgetItem *root = new QTreeWidgetItem(tree); |
99 | QSqlDatabase db = QSqlDatabase::database(connectionNames.at(i), false); |
100 | root->setText(0, qDBCaption(db)); |
101 | if (connectionNames.at(i) == activeDb) { |
102 | gotActiveDb = true; |
103 | setActive(root); |
104 | } |
105 | if (db.isOpen()) { |
106 | QStringList tables = db.tables(); |
107 | for (int t = 0; t < tables.count(); ++t) { |
108 | QTreeWidgetItem *table = new QTreeWidgetItem(root); |
109 | table->setText(0, tables.at(t)); |
110 | } |
111 | } |
112 | } |
113 | if (!gotActiveDb) { |
114 | activeDb = connectionNames.value(0); |
115 | setActive(tree->topLevelItem(0)); |
116 | } |
117 | |
118 | tree->doItemsLayout(); // HACK |
119 | } |
120 | |
121 | QSqlDatabase ConnectionWidget::currentDatabase() const |
122 | { |
123 | return QSqlDatabase::database(activeDb); |
124 | } |
125 | |
126 | static void qSetBold(QTreeWidgetItem *item, bool bold) |
127 | { |
128 | QFont font = item->font(0); |
129 | font.setBold(bold); |
130 | item->setFont(0, font); |
131 | } |
132 | |
133 | void ConnectionWidget::setActive(QTreeWidgetItem *item) |
134 | { |
135 | for (int i = 0; i < tree->topLevelItemCount(); ++i) { |
136 | if (tree->topLevelItem(i)->font(0).bold()) |
137 | qSetBold(tree->topLevelItem(i), false); |
138 | } |
139 | |
140 | if (!item) |
141 | return; |
142 | |
143 | qSetBold(item, true); |
144 | activeDb = QSqlDatabase::connectionNames().value(tree->indexOfTopLevelItem(item)); |
145 | } |
146 | |
147 | void ConnectionWidget::on_tree_itemActivated(QTreeWidgetItem *item, int /* column */) |
148 | { |
149 | if (!item) |
150 | return; |
151 | |
152 | if (!item->parent()) { |
153 | setActive(item); |
154 | } else { |
155 | setActive(item->parent()); |
156 | emit tableActivated(item->text(0)); |
157 | } |
158 | } |
159 | |
160 | void ConnectionWidget::showMetaData() |
161 | { |
162 | QTreeWidgetItem *cItem = tree->currentItem(); |
163 | if (!cItem || !cItem->parent()) |
164 | return; |
165 | setActive(cItem->parent()); |
166 | emit metaDataRequested(cItem->text(0)); |
167 | } |
168 | |
169 | void ConnectionWidget::on_tree_currentItemChanged(QTreeWidgetItem *current, QTreeWidgetItem *) |
170 | { |
171 | metaDataAction->setEnabled(current && current->parent()); |
172 | } |
173 | |
174 | |