QPainter彩色文本(语法着色)
我有一个自定义的 Qt 小部件,用于显示反汇编,我希望为其添加语法着色。
目前,我只需将 QPen 设置为纯色,构造我想要显示的文本,并将其渲染到 QPainter 的适当坐标处。
问题是,添加语法着色的最佳方法是什么? 我想到了一些:
- 我可以简单地将颜色划分为逻辑块,每个逻辑块之前都将 QPen 设置为所需的颜色。
- 我可以使用特殊的转义字符来表示调色板的变化,并一次渲染 1 个字符。
- 我可以对 #1 进行修改并创建一个
std::pair
列表,然后我可以简单地迭代列表设置颜色并在弹出项目时绘制文本列表的前面。 - 完全不同的东西吗?
我知道我列出的 3 种方法在技术上都是可行的,但我正在寻找一种非常有效的解决方案。 这段代码会被很多人调用。 由于这是一个交互式调试器,如果此代码很慢,快速单步执行或跟踪的人会看到明显的减慢。
编辑:我知道QSyntaxHighlighter
和QTextDocument
。 主要问题是这些通常不太适合我的目的。 我有几根立柱,它们都有分隔板,可以前后滑动。 为了给您提供一个想法,这里有一个指向我的调试器的屏幕截图的链接。 正如您所看到的,它根本不像文本文档。 事实上它更接近于列表或表格。 但是已经有一堆自定义绘图正在进行,使得普通的 QTextDocument 有点不切实际。
编辑:我错了,QTextDocument
似乎可以直接渲染到QPainter
。 看起来像我需要的!
编辑:目前尚不清楚如何控制QTextDocument
或QTextLayout
在QPainter
上绘制的位置和方式。 我尝试使用它们但没有成功。 因此,如果有人可以提供一个基本的例子,那将会非常有帮助。
编辑:我最终能够使用这样的东西得到我想要的东西:
painter.setPen(default_color);
QTextDocument doc;
doc.setDefaultFont(font());
doc.setDocumentMargin(0);
doc.setPlainText(text);
highlighter_->setDocument(&doc);
painter.save();
painter.translate(x, y);
QAbstractTextDocumentLayout::PaintContext context;
context.palette.setColor(QPalette::Text, painter.pen().color());
doc.draw(&painter, context);
painter.restore();
I have a custom Qt widget which I used to display disassembly and I am looking to add syntax coloring to it.
Currently, I simply set the QPen
to a solid color, construct the text I want to display, and render it to the QPainter
at the appropriate coordinates.
The question is, what is the best approach to adding syntax coloring? I've thought of a few:
- I could simply divide the coloring into logical blocks, each preceded by setting the QPen to the desired color.
- I could have special escape characters which represent a change in the color palette, and render 1 character at a time.
- I could do a modification of #1 and create a list of
std::pair<QColor, QString>
, then I could simply iterate the list setting the color and drawing the text as I pop items off the front of the list. - Something entirely different?
I know that each of the 3 approaches I've listed will technically work, but I'm looking for a very efficient solution. This code will be called a lot. And since this is an interactive debugger, if this code is slow, someone rapidly stepping or tracing will see a visible slowdown.
EDIT: I'm aware of QSyntaxHighlighter
and QTextDocument
. The main issue is that these don't generally suite my purposes very well. I have several columns which all have dividers and can be slid back and forth. To give you an idea, Here's a link to a screenshot of my debugger. As you can see it isn't really like a text document at all. In fact it is closer to a list or table. But there is already a bunch of custom drawing going on making a normal QTextDocument
somewhat impractical.
EDIT: I was incorrect, It seems that QTextDocument
can render directly to a QPainter
. Looks like what I need!
EDIT: It is unclear how to control where and how QTextDocument
or QTextLayout
will draw on a QPainter
. I've attempted to use them to no avail. So if someone could provide a rudimentary example, that would be very helpful.
EDIT: I was eventually able to get what I wanted using something like this:
painter.setPen(default_color);
QTextDocument doc;
doc.setDefaultFont(font());
doc.setDocumentMargin(0);
doc.setPlainText(text);
highlighter_->setDocument(&doc);
painter.save();
painter.translate(x, y);
QAbstractTextDocumentLayout::PaintContext context;
context.palette.setColor(QPalette::Text, painter.pen().color());
doc.draw(&painter, context);
painter.restore();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用 QTextEdit 或直接使用其下划线引擎 QTextDocument。
I'd use either QTextEdit or directlay its underlining engine QTextDocument.
Qt 提供了一个
QSyntaxHighlighter
这可能正是你要。QSyntaxHighlighter
使用QTextDocument
用特定状态标记每个代码块,该状态可以与特定演示文稿关联 格式。QSyntaxHighlighter
上的文档提供了一个示例,演示了如何实现这一点并做了一些好事:Qt provides a
QSyntaxHighlighter
that is probably exactly what you want.QSyntaxHighlighter
uses aQTextDocument
to mark each block of code with a specific state which can be associated with a specific presentation format.The documentation on
QSyntaxHighlighter
provides a sample demonstrating how this may be accomplished and does some nice things: