Misc code cleanup for the sql examples: - don't include global Qt headers but only needed ones - use proper tr() where possible - pass parameters by const ref - style fixes Change-Id: I4fd4293948918b9d7b373b6d1e8eeecf6f25a622 Reviewed-by: Samuel Gaist <samuel.gaist@idiap.ch>
34 lines
661 B
C++
34 lines
661 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef TABLEEDITOR_H
|
|
#define TABLEEDITOR_H
|
|
|
|
#include <QDialog>
|
|
|
|
QT_FORWARD_DECLARE_CLASS(QDialogButtonBox)
|
|
QT_FORWARD_DECLARE_CLASS(QPushButton)
|
|
QT_FORWARD_DECLARE_CLASS(QSqlTableModel)
|
|
|
|
//! [0]
|
|
class TableEditor : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TableEditor(const QString &tableName, QWidget *parent = nullptr);
|
|
|
|
private slots:
|
|
void submit();
|
|
|
|
private:
|
|
QPushButton *submitButton;
|
|
QPushButton *revertButton;
|
|
QPushButton *quitButton;
|
|
QDialogButtonBox *buttonBox;
|
|
QSqlTableModel *model;
|
|
};
|
|
//! [0]
|
|
|
|
#endif
|