| 
									
										
										
										
											2018-09-09 10:04:19 -04:00
										 |  |  | #ifndef MESSAGEREPLYDIALOG_H
 | 
					
						
							|  |  |  | #define MESSAGEREPLYDIALOG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QDialog>
 | 
					
						
							| 
									
										
										
										
											2018-09-11 13:35:29 -04:00
										 |  |  | #include "keyeater.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-09 10:04:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Ui { | 
					
						
							|  |  |  | class MessageReplyDialog; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class QTextEdit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MessageReplyDialog : public QDialog | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     explicit MessageReplyDialog(QWidget *parent = 0); | 
					
						
							|  |  |  |     ~MessageReplyDialog(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void setLabel(QString); | 
					
						
							|  |  |  |     void setTextValue(QString); | 
					
						
							|  |  |  |     QString textValue() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QTextEdit * textEdit(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private slots: | 
					
						
							|  |  |  |     void on_textEdit_textChanged(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     Ui::MessageReplyDialog *ui; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // MESSAGEREPLAYDIALOG_H
 |