Obsolete Members for QTextBrowser

以下成员源于类 QTextBrowser 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。

信号

(obsolete) void highlighted (const QString & link )

成员函数文档编制

[signal] void QTextBrowser:: highlighted (const QString & link )

此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。

这是重载函数。

Convenience signal that allows connecting to a slot that takes just a QString , like for example QStatusBar 's message().

注意: 信号 highlighted 在此类中被重载。通过使用函数指针句法连接到此信号,Qt 提供用于获得如此范例展示的函数指针的方便帮助程序:

connect(textBrowser, QOverload<const QString &>::of(&QTextBrowser::highlighted),
    [=](const QString &link){ /* ... */ });