| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | // -*- Mode: C++ -*-
 | 
					
						
							|  |  |  | #ifndef DISPLAYTEXT_H
 | 
					
						
							|  |  |  | #define DISPLAYTEXT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QTextEdit>
 | 
					
						
							|  |  |  | #include <QFont>
 | 
					
						
							| 
									
										
										
										
											2018-08-05 11:33:30 -04:00
										 |  |  | #include <QHash>
 | 
					
						
							|  |  |  | #include <QPair>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "logbook/logbook.h"
 | 
					
						
							|  |  |  | #include "decodedtext.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class QAction; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DisplayText | 
					
						
							|  |  |  |   : public QTextEdit | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   Q_OBJECT | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |   explicit DisplayText(QWidget *parent = 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void setContentFont (QFont const&); | 
					
						
							|  |  |  |   void insertLineSpacer(QString const&); | 
					
						
							|  |  |  |   void displayDecodedText(DecodedText const& decodedText, QString const& myCall, bool displayDXCCEntity, | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |         LogBook const& logBook, QColor color_CQ, QColor color_MyCall, | 
					
						
							|  |  |  |         QColor color_DXCC, QColor color_NewCall, bool ppfx, bool bCQonly=false); | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  |   void displayTransmittedText(QString text, QString modeTx, qint32 txFreq, | 
					
						
							| 
									
										
										
										
											2018-08-16 11:02:23 -04:00
										 |  |  | 			      QColor color_ReceivedMsg, bool bFastMode); | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  |   void displayQSY(QString text); | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |   void displayFoxToBeCalled(QString t, QColor bg); | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |   Q_SIGNAL void selectCallsign (Qt::KeyboardModifiers); | 
					
						
							|  |  |  |   Q_SIGNAL void erased (); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-05 11:33:30 -04:00
										 |  |  |   Q_SLOT void appendText (QString const& text, QColor bg = Qt::white | 
					
						
							|  |  |  |                           , QString const& call1 = QString {}, QString const& call2 = QString {}); | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  |   Q_SLOT void erase (); | 
					
						
							| 
									
										
										
										
											2018-08-05 11:33:30 -04:00
										 |  |  |   Q_SLOT void highlight_callsign (QString const& callsign, QColor const& bg, QColor const& fg, bool last_only); | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  |   void mouseDoubleClickEvent(QMouseEvent *e); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |   bool m_bPrincipalPrefix; | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  |   QString appendDXCCWorkedB4(QString message, QString const& callsign, QColor * bg, LogBook const& logBook, | 
					
						
							|  |  |  | 			     QColor color_CQ, QColor color_DXCC, QColor color_NewCall); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   QFont char_font_; | 
					
						
							|  |  |  |   QAction * erase_action_; | 
					
						
							| 
									
										
										
										
											2018-08-05 11:33:30 -04:00
										 |  |  |   QHash<QString, QPair<QColor, QColor>> highlighted_calls_; | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // DISPLAYTEXT_H
 |