2023-10-30 06:33:08 +08:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
|
|
|
|
#ifndef BOOKWINDOW_H
|
|
|
|
#define BOOKWINDOW_H
|
|
|
|
|
|
|
|
#include <QtWidgets>
|
|
|
|
#include <QtSql>
|
|
|
|
|
|
|
|
#include "ui_bookwindow.h"
|
|
|
|
|
|
|
|
|
|
|
|
class BookWindow: public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
BookWindow();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void about();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void showError(const QSqlError &err);
|
|
|
|
Ui::BookWindow ui;
|
2023-11-02 01:02:52 +08:00
|
|
|
QSqlRelationalTableModel *model = nullptr;
|
|
|
|
int authorIdx = 0, genreIdx = 0;
|
2023-10-30 06:33:08 +08:00
|
|
|
|
|
|
|
void createMenuBar();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|