mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-25 06:36:53 -05:00
340a313fea
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
18 lines
292 B
C++
18 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
|