我有带有委托类的QTextBrowser,
在QTextBrowser中,我设置了带有链接的html文本,但是在此html中,我的文本看起来像
像这样用CSS链接:
"<span style=\" font-size:8pt; text-decoration: underline; color:#ffffff;\">dummy_link</span>"
我喜欢将光标类型更改为鼠标悬停时指向的类型。然后触发Qt函数。
问题是,当我尝试使用委托类在QTextBrowser中实现时
mouseMoveEvent(QMouseEvent * e)像这样:所有其他链接(标签)都在这里丢失指针光标,这是我做的时候:
void TextBrowserDelegate::mouseMoveEvent(QMouseEvent *e)
{
QCursor newCursor = cursor();
Qt::CursorShape CurrCursor = newCursor.shape();
QTextCursor tc = cursorForPosition( e->pos() );
tc.select( QTextCursor::WordUnderCursor );
QString sharStr = tc.selectedText();
if(sharStr == "dummy_link")
{
Qt::CursorShape newCursor = Qt::PointingHandCursor;//Qt::ArrowCursor;
setCursor(newCursor);
}
e->accept();
}
我在这里做错了什么?
最佳答案
使用您提供的代码,看起来只有带有文本“ dummy_link”的链接才能获得您选择的游标。如果设置了正确的标志,则QTextBrowser类应自动更改光标。
QTextBrowser::setOpenLinks(true);
如果您的TextBrowserDelegate继承自QTextBrowser,则可以在构造函数中使用以下代码:
TextBrowserDelegate::TextBrowserDelegate(QWidget *parent){
this->setOpenExternalLinks(true);
this->setOpenLinks(true);
connect(this,SIGNAL(anchorClicked(QUrl)),this,SLOT(onClickedLink(QUrl)));
}
void TextBrowserDelegate::onClickedLink(QUrl url){
//do something with url
}
关于c++ - Qt QTextBrowser如何捕获文本并更改其光标,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9173474/