summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/qmlvisitor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update year in Nokia copyright messages.Jason McDonald2012-01-111-1/+1
| | | | | | | | | Simple search and replace. This commit doesn't touch 3rd-party files, nor translations (where the change is not so simple and will be handled in a separate commit). Change-Id: I4e48513b8078a44a8cd272326685b25338890148 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Improved comment finding code.David Boddie2011-08-111-24/+39
| | | | | Avoid snippet markers and prevent accidental reuse of comments for different objects.
* qdoc: Fixed code to match comments in QML files. Fixed API types.David Boddie2011-06-081-6/+5
|
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Merge remote-tracking branch 'origin/4.7' into qt-master-from-4.7Olivier Goffart2011-04-071-3/+3
|\ | | | | | | | | | | Conflicts: src/gui/text/qfontengine_mac.mm tests/auto/qdiriterator/tst_qdiriterator.cpp
| * Fixed the declarative headers and includes within qdoc.David Boddie2011-04-051-3/+3
| |
* | Update copyright year to 2011.Rohan McGovern2011-03-101-1/+1
|/ | | | | Reviewed-by: Trust Me (cherry picked from commit 774a3536b00c4d6e4c4c10b708e31b4373a338e3)
* Added the foundations of QML markup support.David Boddie2010-11-281-22/+26
| | | | | | Use the QtDeclarative parser instead of Qt Creator's QML parser. Split the QML visitor into documentation and markup visitors. The code marker used for each file is now determined from its extension.
* Added support for pure QML signals and properties.David Boddie2010-11-251-12/+38
| | | | Generalized the function to annotate nodes with documentation.
* Refactored use of parsers to parse files based on their types.David Boddie2010-11-241-0/+191
The full range of file types is specified in the configuration file. Each parser is asked if it handles each file. The pure documentation parser conceptually handles qdoc files, but it uses the same code as the C++ parser.