mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
35 lines
604 B
C++
35 lines
604 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef ADDDIALOG_H
|
|
#define ADDDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QTextEdit;
|
|
class QLineEdit;
|
|
QT_END_NAMESPACE
|
|
|
|
//! [0]
|
|
class AddDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AddDialog(QWidget *parent = nullptr);
|
|
|
|
QString name() const;
|
|
QString address() const;
|
|
void editAddress(const QString &name, const QString &address);
|
|
|
|
private:
|
|
QLineEdit *nameText;
|
|
QTextEdit *addressText;
|
|
};
|
|
//! [0]
|
|
|
|
#endif // ADDDIALOG_H
|