36 lines
805 B
C++
36 lines
805 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2015 Albert Vaca <albertvaka@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#ifndef SENDREPLYDIALOG_H
|
|
#define SENDREPLYDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QSize>
|
|
|
|
namespace Ui { class SendReplyDialog; }
|
|
|
|
class SendReplyDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SendReplyDialog(const QString& originalMessage, const QString& replyId, const QString& topicName, QWidget* parent = nullptr);
|
|
~SendReplyDialog() override;
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
private Q_SLOTS:
|
|
void sendButtonClicked();
|
|
|
|
Q_SIGNALS:
|
|
void sendReply(const QString& replyId, const QString& messageBody);
|
|
|
|
private:
|
|
const QString m_replyId;
|
|
const QScopedPointer<Ui::SendReplyDialog> m_ui;
|
|
};
|
|
|
|
#endif
|