2022-05-10 12:06:48 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 12:05:43 +02:00
|
|
|
|
|
|
|
#ifndef WINDOW_H
|
|
|
|
#define WINDOW_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QComboBox;
|
|
|
|
class QDataWidgetMapper;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
|
|
|
class QPushButton;
|
|
|
|
class QStandardItemModel;
|
|
|
|
class QStringListModel;
|
|
|
|
class QTextEdit;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
//! [Window definition]
|
|
|
|
class Window : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-10-07 13:05:48 +02:00
|
|
|
Window(QWidget *parent = nullptr);
|
2011-04-27 12:05:43 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateButtons(int row);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setupModel();
|
|
|
|
|
|
|
|
QLabel *nameLabel;
|
|
|
|
QLabel *addressLabel;
|
|
|
|
QLabel *typeLabel;
|
|
|
|
QLineEdit *nameEdit;
|
|
|
|
QTextEdit *addressEdit;
|
|
|
|
QComboBox *typeComboBox;
|
|
|
|
QPushButton *nextButton;
|
|
|
|
QPushButton *previousButton;
|
|
|
|
|
|
|
|
QStandardItemModel *model;
|
|
|
|
QStringListModel *typeModel;
|
|
|
|
QDataWidgetMapper *mapper;
|
|
|
|
};
|
|
|
|
//! [Window definition]
|
|
|
|
|
2012-11-22 13:40:51 +01:00
|
|
|
#endif // WINDOW_H
|