QmlJS: Implement context help and tooltips for properties.

This commit is contained in:
Christian Kamm
2010-11-17 14:48:25 +01:00
parent aa2d9e6dd6
commit 740eb6a987
6 changed files with 124 additions and 33 deletions

View File

@@ -108,8 +108,11 @@ QString HelpItem::extractContent(bool extended) const
case Macro:
contents = htmlExtractor.getMacroDescription(html, m_docMark);
break;
case QML:
contents = htmlExtractor.getQMLItemDescription(html, m_docMark);
case QmlComponent:
contents = htmlExtractor.getQmlComponentDescription(html, m_docMark);
break;
case QmlProperty:
contents = htmlExtractor.getQmlPropertyDescription(html, m_docMark);
break;
default: