Re-write of cpp hover handler and tooltip integration with qtdocs.

This commit is contained in:
Leandro Melo
2010-07-12 13:24:45 +02:00
parent 36f5545f5a
commit 123c10a77b
7 changed files with 863 additions and 209 deletions

View File

@@ -240,6 +240,13 @@ QUrl HelpManager::findFile(const QUrl &url) const
return m_helpEngine->findFile(url);
}
QByteArray HelpManager::fileData(const QUrl &url) const
{
if (m_needsSetup)
return QByteArray();
return m_helpEngine->fileData(url);
}
void HelpManager::handleHelpRequest(const QString &url)
{
emit helpRequested(QUrl(url));