2017-05-31 14:33:21 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2015 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-05-31 14:33:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sendreplydialog.h"
|
|
|
|
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QBoxLayout>
|
|
|
|
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
2017-08-03 16:23:12 +01:00
|
|
|
#include "ui_sendreplydialog.h"
|
|
|
|
|
2017-05-31 14:33:21 +01:00
|
|
|
SendReplyDialog::SendReplyDialog(const QString& originalMessage, const QString& replyId, const QString& topicName, QWidget* parent)
|
|
|
|
: QDialog(parent)
|
2017-09-03 20:39:44 +01:00
|
|
|
, m_replyId(replyId)
|
2017-08-03 16:23:12 +01:00
|
|
|
, m_ui(new Ui::SendReplyDialog)
|
2017-05-31 14:33:21 +01:00
|
|
|
{
|
2017-08-03 16:23:12 +01:00
|
|
|
m_ui->setupUi(this);
|
2019-06-10 15:40:28 +01:00
|
|
|
m_ui->textView->setText(topicName + QStringLiteral(": \n") + originalMessage);
|
2017-05-31 14:33:21 +01:00
|
|
|
|
2017-08-03 16:23:12 +01:00
|
|
|
auto button = m_ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
button->setText(i18n("Send"));
|
2017-05-31 14:33:21 +01:00
|
|
|
|
2017-08-03 16:23:12 +01:00
|
|
|
connect(this, &QDialog::accepted, this, &SendReplyDialog::sendButtonClicked);
|
2017-05-31 14:33:21 +01:00
|
|
|
setWindowTitle(topicName);
|
|
|
|
setWindowIcon(QIcon::fromTheme(QStringLiteral("kdeconnect")));
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
}
|
|
|
|
|
2017-08-03 16:23:12 +01:00
|
|
|
SendReplyDialog::~SendReplyDialog() = default;
|
2017-05-31 14:33:21 +01:00
|
|
|
|
|
|
|
void SendReplyDialog::sendButtonClicked()
|
|
|
|
{
|
2017-09-03 21:00:06 +01:00
|
|
|
Q_EMIT sendReply(m_replyId, m_ui->replyEdit->toPlainText());
|
2017-05-31 14:33:21 +01:00
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize SendReplyDialog::sizeHint() const
|
|
|
|
{
|
|
|
|
return QSize(512, 64);
|
|
|
|
}
|