如何获取 QTextBlock 相对于当前文档布局的偏移量?

发布于 2024-11-19 13:39:19 字数 642 浏览 2 评论 0原文

给定一个文本块,有没有办法确定它相对于当前文档布局的坐标 (0, 0) 的偏移量?

例如,假设我有一个QPlainTextEdit,其中包含以下内容:

Line 1
Line 2

如果每行的高度为17px,我如何获得第2行的偏移量?由于第 1 行位于顶部,因此距顶部应为 0px,第 2 行距顶部应为 17px

我尝试了许多不同的功能,但似乎没有一个具有信息:

这些方法似乎都不起作用。

Given a text block, is there a way to determine its offset relative to the coordinates (0, 0) of the current document layout?

For example, suppose I have a QPlainTextEdit with the following contents:

Line 1
Line 2

If the height of each line is 17px, how can I get the offset of line 2? Since line 1 is at the top, it should be 0px from the top and line 2 should be 17px from the top.

I tried a number of different functions but none of them seems to have the information:

None of these methods seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

油焖大侠 2024-11-26 13:39:19

我相信你可以尝试QTextCursor。

QTextEdit textEdit;
QTextCursor c =  textEdit->textCursor();
c.position();

c.positionInBlock();

查看 QTextCursor 上的文档了解详细信息。

I believe you can try QTextCursor.

QTextEdit textEdit;
QTextCursor c =  textEdit->textCursor();
c.position();

or

c.positionInBlock();

Check documents on QTextCursor for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文