JS8Call-Improved master
Loading...
Searching...
No Matches
MessageReplyDialog.h
1#ifndef MESSAGEREPLYDIALOG_H
2#define MESSAGEREPLYDIALOG_H
3
4#include <QDialog>
5#include <QString>
6
7namespace Ui {
8class MessageReplyDialog;
9}
10
11class QTextEdit;
12
13class MessageReplyDialog : public QDialog {
14 Q_OBJECT
15
16 public:
17 explicit MessageReplyDialog(QWidget *parent = 0);
18 ~MessageReplyDialog();
19
20 void setLabel(QString);
21 void setTextValue(QString);
22 QString textValue() const;
23
24 QTextEdit *textEdit();
25
26 private slots:
27 void on_textEdit_textChanged();
28
29 private:
30 Ui::MessageReplyDialog *ui;
31};
32
33#endif // MESSAGEREPLAYDIALOG_H