1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#include <vtkPython.h> // must always be included first
#include "pqPythonSyntaxHighlighter.h"
#include <QApplication>
#include <QDebug>
#include <QEvent>
#include <QKeyEvent>
#include <QPointer>
#include <QScrollBar>
#include <QString>
#include <QTextCursor>
#include <QTextEdit>
namespace globals
{
constexpr const char* kFourSpaces = " ";
}
//-----------------------------------------------------------------------------
pqPythonSyntaxHighlighter::pqPythonSyntaxHighlighter(QObject* p, QTextEdit& textEdit)
: Superclass(p)
, TextEdit(textEdit)
{
this->TextEdit.installEventFilter(this);
vtkPythonInterpreter::Initialize();
{
vtkPythonScopeGilEnsurer gilEnsurer;
// PyErr_Fetch() -- PyErr_Restore() helps us catch import related exceptions
// thus avoiding printing any messages to the terminal if the `pygments`
// import fails. `pygments` is totally optional for ParaView.
PyObject *type, *value, *traceback;
PyErr_Fetch(&type, &value, &traceback);
this->PygmentsModule.TakeReference(PyImport_ImportModule("pygments"));
PyErr_Restore(type, value, traceback);
if (this->PygmentsModule)
{
this->HighlightFunction.TakeReference(
PyObject_GetAttrString(this->PygmentsModule, "highlight"));
vtkSmartPyObject lexersModule(PyImport_ImportModule("pygments.lexers"));
vtkSmartPyObject formattersModule(PyImport_ImportModule("pygments.formatters.redtabhtml"));
vtkSmartPyObject htmlFormatterClass;
// If we have the custom formatter written for ParaView, great.
// otherwise just default to the HtmlFormatter in pygments
if (formattersModule)
{
htmlFormatterClass.TakeReference(
PyObject_GetAttrString(formattersModule, "RedTabHtmlFormatter"));
}
else
{
formattersModule.TakeReference(PyImport_ImportModule("pygments.formatters"));
htmlFormatterClass.TakeReference(PyObject_GetAttrString(formattersModule, "HtmlFormatter"));
}
#ifdef VTK_PY3K
vtkSmartPyObject pythonLexerClass(PyObject_GetAttrString(lexersModule, "Python3Lexer"));
#else
vtkSmartPyObject pythonLexerClass(PyObject_GetAttrString(lexersModule, "PythonLexer"));
#endif
vtkSmartPyObject emptyTuple(Py_BuildValue("()"));
this->PythonLexer.TakeReference(PyObject_Call(pythonLexerClass, emptyTuple, nullptr));
this->HtmlFormatter.TakeReference(PyObject_Call(htmlFormatterClass, emptyTuple, nullptr));
PyObject_SetAttrString(this->HtmlFormatter, "noclasses", Py_True);
PyObject_SetAttrString(this->HtmlFormatter, "nobackground", Py_True);
}
else
{
static bool warnOnce = true;
if (warnOnce)
{
qInfo("Python package 'pygments' is missing. Please install the package for syntax "
"highlighting.");
warnOnce = false;
}
}
}
// Use a fixed-width font for text edits displaying code
QFont font("Monospace");
// cause Qt to select an fixed-width font if Monospace isn't found
font.setStyleHint(QFont::TypeWriter);
this->TextEdit.setFont(font);
// Set tab width equal to 4 spaces
QFontMetrics metrics = this->TextEdit.fontMetrics();
this->TextEdit.setTabStopDistance(metrics.horizontalAdvance(globals::kFourSpaces));
}
//-----------------------------------------------------------------------------
bool pqPythonSyntaxHighlighter::isReplacingTabs() const
{
return this->ReplaceTabs;
}
//-----------------------------------------------------------------------------
void pqPythonSyntaxHighlighter::setReplaceTabs(bool replaceTabs)
{
this->ReplaceTabs = replaceTabs;
}
//-----------------------------------------------------------------------------
bool pqPythonSyntaxHighlighter::eventFilter(QObject* obj, QEvent* ev)
{
if (!this->ReplaceTabs)
{
return false;
}
if (ev->type() == QEvent::KeyPress)
{
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(ev);
if (keyEvent->modifiers() == Qt::NoModifier && keyEvent->key() == Qt::Key_Tab)
{
QTextCursor tc = this->TextEdit.textCursor();
tc.select(QTextCursor::LineUnderCursor);
// Don't replace tabs if we're not at the start of the line
if (!tc.selectedText().trimmed().isEmpty())
{
return false;
}
tc.insertText(globals::kFourSpaces);
return true;
}
}
return QObject::eventFilter(obj, ev);
}
//-----------------------------------------------------------------------------
QString pqPythonSyntaxHighlighter::Highlight(const QString& text) const
{
int leadingWhiteSpaceLength = 0;
int trailingWhiteSpaceLength = 0;
while (leadingWhiteSpaceLength < text.length() && text.at(leadingWhiteSpaceLength).isSpace())
{
++leadingWhiteSpaceLength;
}
QString result;
if (this->PygmentsModule && leadingWhiteSpaceLength < text.length())
{
while (trailingWhiteSpaceLength < text.length() &&
text.at(text.length() - 1 - trailingWhiteSpaceLength).isSpace())
{
++trailingWhiteSpaceLength;
}
QString leadingWhitespace = text.left(leadingWhiteSpaceLength);
QString trailingWhitespace = text.right(trailingWhiteSpaceLength);
QByteArray bytes = text.trimmed().toUtf8();
vtkPythonScopeGilEnsurer gilEnsurer;
vtkSmartPyObject unicode(PyUnicode_DecodeUTF8(bytes.data(), bytes.size(), nullptr));
vtkSmartPyObject args(Py_BuildValue("OOO", unicode.GetPointer(), this->PythonLexer.GetPointer(),
this->HtmlFormatter.GetPointer()));
vtkSmartPyObject resultingText(PyObject_Call(this->HighlightFunction, args, nullptr));
#if PY_VERSION_HEX >= 0x03070000
char* resultingTextAsCString = const_cast<char*>(PyUnicode_AsUTF8(resultingText));
#else
const char* resultingTextAsCString = PyUnicode_AsUTF8(resultingText);
#endif
const QString pygmentsOutput = QString::fromUtf8(resultingTextAsCString);
// the first span tag always should follow the pre tag like this; <pre ...><span
const int startOfPre = pygmentsOutput.indexOf(">", pygmentsOutput.indexOf("<pre")) + 1;
const int endOfPre = pygmentsOutput.lastIndexOf("</pre>");
const QString startOfHtml = pygmentsOutput.left(startOfPre);
const QString formatted = pygmentsOutput.mid(startOfPre, endOfPre - startOfPre).trimmed();
const QString endOfHtml = pygmentsOutput.right(pygmentsOutput.length() - endOfPre).trimmed();
// The <pre ...> tag will ignore a newline immediately following the >,
// so insert one to be ignored. Similarly, the </pre> will ignore a
// newline immediately preceding it, so put one in. These quirks allow
// inserting newlines at the beginning and end of the text and took a
// long time to figure out.
result = QString("%1\n%2%3%4\n%5")
.arg(startOfHtml, leadingWhitespace, formatted, trailingWhitespace, endOfHtml);
}
return result;
}
//-----------------------------------------------------------------------------
void pqPythonSyntaxHighlighter::ConnectHighligter() const
{
connect(&this->TextEdit, &QTextEdit::textChanged, [this]() {
const QString text = this->TextEdit.toPlainText();
const int cursorPosition = this->TextEdit.textCursor().position();
const QString highlightedText = this->Highlight(text);
if (!highlightedText.isEmpty())
{
const bool oldState = this->TextEdit.blockSignals(true);
this->TextEdit.setHtml(this->Highlight(text));
QTextCursor cursor = this->TextEdit.textCursor();
cursor.setPosition(cursorPosition);
this->TextEdit.setTextCursor(cursor);
const int vScrollBarValue = this->TextEdit.verticalScrollBar()->value();
this->TextEdit.verticalScrollBar()->setValue(vScrollBarValue);
const int hScrollBarValue = this->TextEdit.horizontalScrollBar()->value();
this->TextEdit.horizontalScrollBar()->setValue(hScrollBarValue);
this->TextEdit.blockSignals(oldState);
}
});
}
|