2018-09-09 10:04:19 -04:00
|
|
|
#ifndef MESSAGEREPLYDIALOG_H
|
|
|
|
|
#define MESSAGEREPLYDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include <QDialog>
|
2024-11-12 07:50:08 -08:00
|
|
|
#include <QString>
|
2018-09-09 10:04:19 -04:00
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class MessageReplyDialog;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class QTextEdit;
|
|
|
|
|
|
2026-01-01 15:12:24 -06:00
|
|
|
class MessageReplyDialog : public QDialog {
|
2018-09-09 10:04:19 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2026-01-01 15:12:24 -06:00
|
|
|
public:
|
2018-09-09 10:04:19 -04:00
|
|
|
explicit MessageReplyDialog(QWidget *parent = 0);
|
|
|
|
|
~MessageReplyDialog();
|
|
|
|
|
|
|
|
|
|
void setLabel(QString);
|
|
|
|
|
void setTextValue(QString);
|
|
|
|
|
QString textValue() const;
|
|
|
|
|
|
2026-01-01 15:12:24 -06:00
|
|
|
QTextEdit *textEdit();
|
2018-09-09 10:04:19 -04:00
|
|
|
|
2026-01-01 15:12:24 -06:00
|
|
|
private slots:
|
2018-09-09 10:04:19 -04:00
|
|
|
void on_textEdit_textChanged();
|
|
|
|
|
|
2026-01-01 15:12:24 -06:00
|
|
|
private:
|
2018-09-09 10:04:19 -04:00
|
|
|
Ui::MessageReplyDialog *ui;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // MESSAGEREPLAYDIALOG_H
|