mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-31 20:04:36 -04:00

Show clickable links in the channel feed message. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4923 b45a01b8-16f6-495d-af2f-9b41ad6348cc
17 lines
292 B
C++
17 lines
292 B
C++
#ifndef LINKTEXTBROWSER_H
|
|
#define LINKTEXTBROWSER_H
|
|
|
|
#include <QTextBrowser>
|
|
|
|
class LinkTextBrowser : public QTextBrowser
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LinkTextBrowser(QWidget *parent = 0);
|
|
|
|
private slots:
|
|
void linkClicked(const QUrl &url);
|
|
};
|
|
|
|
#endif // LINKTEXTBROWSER_H
|