2023-06-10 14:15:38 +00:00
|
|
|
#ifndef RESPONSETEXT_H
|
|
|
|
#define RESPONSETEXT_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQmlEngine>
|
|
|
|
#include <QQuickTextDocument>
|
|
|
|
#include <QSyntaxHighlighter>
|
|
|
|
#include <QRegularExpression>
|
|
|
|
|
|
|
|
class SyntaxHighlighter : public QSyntaxHighlighter {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SyntaxHighlighter(QObject *parent);
|
|
|
|
~SyntaxHighlighter();
|
|
|
|
void highlightBlock(const QString &text) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ContextLink {
|
|
|
|
int startPos = -1;
|
|
|
|
int endPos = -1;
|
|
|
|
QString text;
|
|
|
|
QString href;
|
|
|
|
};
|
|
|
|
|
2023-06-10 16:34:43 +00:00
|
|
|
struct CodeCopy {
|
|
|
|
int startPos = -1;
|
|
|
|
int endPos = -1;
|
|
|
|
QString text;
|
|
|
|
};
|
|
|
|
|
2023-06-10 14:15:38 +00:00
|
|
|
class ResponseText : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QQuickTextDocument* textDocument READ textDocument WRITE setTextDocument NOTIFY textDocumentChanged())
|
|
|
|
QML_ELEMENT
|
|
|
|
public:
|
|
|
|
explicit ResponseText(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
QQuickTextDocument* textDocument() const;
|
|
|
|
void setTextDocument(QQuickTextDocument* textDocument);
|
|
|
|
|
|
|
|
Q_INVOKABLE void setLinkColor(const QColor &c) { m_linkColor = c; }
|
2023-06-10 16:34:43 +00:00
|
|
|
Q_INVOKABLE void setHeaderColor(const QColor &c) { m_headerColor = c; }
|
|
|
|
|
2023-06-10 14:15:38 +00:00
|
|
|
Q_INVOKABLE QString getLinkAtPosition(int position) const;
|
2023-06-10 16:34:43 +00:00
|
|
|
Q_INVOKABLE bool tryCopyAtPosition(int position) const;
|
2023-06-10 14:15:38 +00:00
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void textDocumentChanged();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void handleTextChanged();
|
2023-06-10 16:34:43 +00:00
|
|
|
void handleContextLinks();
|
|
|
|
void handleCodeBlocks();
|
2023-06-10 14:15:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QQuickTextDocument *m_textDocument;
|
|
|
|
SyntaxHighlighter *m_syntaxHighlighter;
|
|
|
|
QVector<ContextLink> m_links;
|
2023-06-10 16:34:43 +00:00
|
|
|
QVector<CodeCopy> m_copies;
|
2023-06-10 14:15:38 +00:00
|
|
|
QColor m_linkColor;
|
2023-06-10 16:34:43 +00:00
|
|
|
QColor m_headerColor;
|
2023-06-10 14:15:38 +00:00
|
|
|
bool m_isProcessingText = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RESPONSETEXT_H
|