summaryrefslogtreecommitdiffstats
path: root/examples/sql/books/bookwindow.h
blob: 46d3570df1c622a4632cbf7e7e9588a8fd3095d3 (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef BOOKWINDOW_H
#define BOOKWINDOW_H

#include <QMainWindow>
QT_FORWARD_DECLARE_CLASS(QComboBox)
QT_FORWARD_DECLARE_CLASS(QGridLayout)
QT_FORWARD_DECLARE_CLASS(QLabel)
QT_FORWARD_DECLARE_CLASS(QLineEdit)
QT_FORWARD_DECLARE_CLASS(QSpinBox)
QT_FORWARD_DECLARE_CLASS(QSqlError)
QT_FORWARD_DECLARE_CLASS(QSqlRelationalTableModel)
QT_FORWARD_DECLARE_CLASS(QTableView)

class BookWindow: public QMainWindow
{
    Q_OBJECT
public:
    BookWindow();

private slots:
    void about();

private:
    void showError(const QSqlError &err);
    QSqlRelationalTableModel *model = nullptr;
    int authorIdx = 0, genreIdx = 0;

    void createLayout();
    void createModel();
    void configureWidgets();
    void createMappings();
    void createMenuBar();

    QWidget *window = nullptr;

    QGridLayout *gridLayout = nullptr;
    QTableView *tableView = nullptr;
    QLabel *titleLabel = nullptr;
    QLineEdit *titleLineEdit = nullptr;
    QLabel *authorLabel = nullptr;
    QComboBox *authorComboBox = nullptr;
    QLabel *genreLabel = nullptr;
    QComboBox *genreComboBox = nullptr;
    QLabel *yearLabel = nullptr;
    QSpinBox *yearSpinBox = nullptr;
    QLabel *ratingLabel = nullptr;
    QComboBox *ratingComboBox = nullptr;
};

#endif