作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用QTextEdit
(在只读模式下)显示可点击的超链接,我曾经这样做
QTextEdit *textEdit = new QTextEdit;
QTextCursor cursor(textEdit->document());
textEdit->setTextCursor(cursor);
cursor->insertHtml("<a href=\"www.google.com\" >Google</a>");
textEdit->show();
QTextEdit *textEdit = new QTextEdit;
QTextCursor cursor(textEdit->document());
textEdit->setTextCursor(cursor);
QTextCharFormat linkFormat = cursor.charFormat();
linkFormat.setAnchor(true);
linkFormat.setAnchorHref("http://www.google.com");
linkFormat.setAnchorName("Google");
cursor.insertText("Google", linkFormat);
QTextEdit
.
最佳答案
使用 QTextBrowser
更简单(正如另一个答案所建议的那样)。但是,如果出于某种原因您想使用 QTextEdit
, 尝试使用 setTextInteractionFlags()
更改文本交互标志.
我认为您必须启用 Qt::LinksAccessibleByMouse
旗帜。
见 Qt::TextInteractionFlag和 QTextEdit::textInteractionFlags
关于qt - QTextEdit 中的可点击超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35858340/
我是一名优秀的程序员,十分优秀!