1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "bookwindow.h"
#include "bookdelegate.h"
#include "initdb.h"
#include <QApplication>
#include <QComboBox>
#include <QDataWidgetMapper>
#include <QGridLayout>
#include <QHeaderView>
#include <QLabel>
#include <QLineEdit>
#include <QMenu>
#include <QMenuBar>
#include <QMessageBox>
#include <QPainter>
#include <QScrollBar>
#include <QSpinBox>
#include <QSqlDatabase>
#include <QTableView>
BookWindow::BookWindow()
{
if (!QSqlDatabase::drivers().contains("QSQLITE"))
QMessageBox::critical(this, tr("Unable to load database"),
tr("This demo needs the SQLITE driver"));
// Initialize the database:
QSqlError err = initDb();
if (err.type() != QSqlError::NoError) {
showError(err);
return;
}
// create the central widget for the window
window = new QWidget(this);
setCentralWidget(window);
createLayout();
createModel();
// Populate the model
if (!model->select()) {
showError(model->lastError());
return;
}
configureWidgets();
// create the mappings between the UI elements and the SQL model
createMappings();
tableView->setCurrentIndex(model->index(0, 0));
tableView->selectRow(0);
createMenuBar();
}
void BookWindow::showError(const QSqlError &err)
{
QMessageBox::critical(this, tr("Unable to initialize Database"),
tr("Error initializing database: %1").arg(err.text()));
}
void BookWindow::createLayout()
{
tableView = new QTableView(window);
gridLayout = new QGridLayout(window);
titleLabel = new QLabel(tr("Title:"), window);
titleLineEdit = new QLineEdit(window);
authorLabel = new QLabel(tr("Author:"), window);
authorComboBox = new QComboBox(window);
genreLabel = new QLabel(tr("Genre:"), window);
genreComboBox = new QComboBox(window);
yearLabel = new QLabel(tr("Year:"), window);
yearSpinBox = new QSpinBox(window);
ratingLabel = new QLabel(tr("Rating:"), window);
ratingComboBox = new QComboBox(window);
gridLayout->addWidget(titleLabel, 0, 0, Qt::AlignRight);
gridLayout->addWidget(titleLineEdit, 0, 1, 1, 3);
gridLayout->addWidget(authorLabel, 1, 0, Qt::AlignRight);
gridLayout->addWidget(authorComboBox, 1, 1);
gridLayout->addWidget(yearLabel, 1, 2, Qt::AlignRight);
gridLayout->addWidget(yearSpinBox, 1, 3);
gridLayout->addWidget(genreLabel, 2, 0, Qt::AlignRight);
gridLayout->addWidget(genreComboBox, 2, 1);
gridLayout->addWidget(ratingLabel, 2, 2, Qt::AlignRight);
gridLayout->addWidget(ratingComboBox, 2, 3);
gridLayout->addWidget(tableView, 3, 0, 1, 4, Qt::AlignCenter);
gridLayout->setColumnStretch(1, 1000);
gridLayout->setColumnStretch(3, 1000);
gridLayout->setContentsMargins(18, 18, 18, 18);
gridLayout->setSpacing(18);
gridLayout->setAlignment(Qt::AlignHCenter);
}
void BookWindow::createModel()
{
model = new QSqlRelationalTableModel(tableView);
model->setEditStrategy(QSqlTableModel::OnManualSubmit);
model->setTable("books");
authorIdx = model->fieldIndex("author");
genreIdx = model->fieldIndex("genre");
// Set the relations to the other database tables
model->setRelation(authorIdx, QSqlRelation("authors", "id", "name"));
model->setRelation(genreIdx, QSqlRelation("genres", "id", "name"));
// Set the localised header captions
model->setHeaderData(authorIdx, Qt::Horizontal, tr("Author Name"));
model->setHeaderData(genreIdx, Qt::Horizontal, tr("Genre"));
model->setHeaderData(model->fieldIndex("title"),
Qt::Horizontal, tr("Title"));
model->setHeaderData(model->fieldIndex("year"), Qt::Horizontal, tr("Year"));
model->setHeaderData(model->fieldIndex("rating"),
Qt::Horizontal, tr("Rating"));
}
void BookWindow::configureWidgets()
{
tableView->setModel(model);
tableView->setItemDelegate(new BookDelegate(model->fieldIndex("rating"), tableView));
tableView->setColumnHidden(model->fieldIndex("id"), true);
tableView->verticalHeader()->setVisible(false);
tableView->setSelectionMode(QAbstractItemView::ExtendedSelection);
tableView->setSelectionBehavior(QAbstractItemView::SelectRows);
// Lock and prohibit resizing of the width of the columns
tableView->horizontalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
tableView->verticalHeader()->setSectionResizeMode(QHeaderView::ResizeToContents);
tableView->horizontalHeader()->setFixedHeight(tableView->rowHeight(0));
// increment by two to consider the frame
tableView->setFixedWidth(tableView->horizontalHeader()->length() +
tableView->verticalScrollBar()->sizeHint().width() + 2);
tableView->setMaximumHeight(tableView->verticalHeader()->length() +
tableView->horizontalHeader()->height() + 2);
authorComboBox->setModel(model->relationModel(authorIdx));
authorComboBox->setModelColumn(model->relationModel(authorIdx)->fieldIndex("name"));
genreComboBox->setModel(model->relationModel(genreIdx));
genreComboBox->setModelColumn(model->relationModel(genreIdx)->fieldIndex("name"));
yearSpinBox->setMaximum(9999);
ratingComboBox->setItemDelegate(new BookDelegate(0, this));
ratingComboBox->setLabelDrawingMode(QComboBox::LabelDrawingMode::UseDelegate);
ratingComboBox->addItems({"0", "1", "2", "3", "4", "5"});
ratingComboBox->setIconSize(iconSize());
}
void BookWindow::createMappings()
{
QDataWidgetMapper *mapper = new QDataWidgetMapper(this);
mapper->setModel(model);
mapper->setItemDelegate(new BookDelegate(model->fieldIndex("rating"), this));
mapper->addMapping(titleLineEdit, model->fieldIndex("title"));
mapper->addMapping(yearSpinBox, model->fieldIndex("year"));
mapper->addMapping(authorComboBox, authorIdx);
mapper->addMapping(genreComboBox, genreIdx);
mapper->addMapping(ratingComboBox, model->fieldIndex("rating"), "currentIndex");
connect(tableView->selectionModel(),
&QItemSelectionModel::currentRowChanged,
mapper,
&QDataWidgetMapper::setCurrentModelIndex
);
}
void BookWindow::createMenuBar()
{
QAction *quitAction = new QAction(tr("&Quit"), this);
QAction *aboutAction = new QAction(tr("&About"), this);
QAction *aboutQtAction = new QAction(tr("&About Qt"), this);
QMenu *fileMenu = menuBar()->addMenu(tr("&File"));
fileMenu->addAction(quitAction);
QMenu *helpMenu = menuBar()->addMenu(tr("&Help"));
helpMenu->addAction(aboutAction);
helpMenu->addAction(aboutQtAction);
connect(quitAction, &QAction::triggered, qApp, &QCoreApplication::quit);
connect(aboutAction, &QAction::triggered, this, &BookWindow::about);
connect(aboutQtAction, &QAction::triggered, qApp, &QApplication::aboutQt);
}
void BookWindow::about()
{
QMessageBox::about(this, tr("About Books"),
tr("<p>The <b>Books</b> example shows how to use Qt SQL classes "
"with a model/view framework."));
}
|