mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-26 07:16:11 -05:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#ifndef RSTEXTBROWSER_H
|
|
#define RSTEXTBROWSER_H
|
|
|
|
#include <QTextBrowser>
|
|
#include "util/RsSyntaxHighlighter.h"
|
|
|
|
class RSImageBlockWidget;
|
|
|
|
class RSTextBrowser : public QTextBrowser
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor textColorQuote READ textColorQuote WRITE setTextColorQuote)
|
|
|
|
public:
|
|
explicit RSTextBrowser(QWidget *parent = 0);
|
|
|
|
void setPlaceholderText(const QString &text);
|
|
void setImageBlockWidget(RSImageBlockWidget *widget);
|
|
void resetImagesStatus(bool load);
|
|
|
|
void activateLinkClick(bool active);
|
|
|
|
virtual QVariant loadResource(int type, const QUrl &name);
|
|
|
|
QColor textColorQuote() const { return highliter->textColorQuote();}
|
|
|
|
public slots:
|
|
void showImages();
|
|
void setTextColorQuote(QColor textColorQuote) { highliter->setTextColorQuote(textColorQuote);}
|
|
|
|
private slots:
|
|
void linkClicked(const QUrl &url);
|
|
void destroyImageBlockWidget();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
private:
|
|
QString mPlaceholderText;
|
|
bool mShowImages;
|
|
RSImageBlockWidget *mImageBlockWidget;
|
|
bool mLinkClickActive;
|
|
RsSyntaxHighlighter *highliter;
|
|
};
|
|
|
|
#endif // RSTEXTBROWSER_H
|