ed1fbc7a88
* use nullptr * use member init * set ExpandingFieldsGrow fieldGrowthPolicy for QFormLayout, which makes it behaviors similar on macOS as other platforms * select first row to make up/down keys works by default Pick-to: 6.5 6.6 Change-Id: I25d9869d2ca1c7274c2b750aada8270734787546 Reviewed-by: Liang Qi <liang.qi@qt.io>
32 lines
532 B
C++
32 lines
532 B
C++
// 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;
|
|
QSqlRelationalTableModel *model = nullptr;
|
|
int authorIdx = 0, genreIdx = 0;
|
|
|
|
void createMenuBar();
|
|
};
|
|
|
|
#endif
|