mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
23 lines
326 B
C++
23 lines
326 B
C++
#ifndef DISPLAYTEXT_H
|
|
#define DISPLAYTEXT_H
|
|
|
|
#include <QTextBrowser>
|
|
|
|
class DisplayText : public QTextBrowser
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DisplayText(QWidget *parent = 0);
|
|
|
|
signals:
|
|
void selectCallsign(bool ctrl);
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
void mouseDoubleClickEvent(QMouseEvent *e);
|
|
|
|
};
|
|
|
|
#endif // DISPLAYTEXT_H
|