summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3/main.cpp
diff options
context:
space:
mode:
authorDavid Boddie <david.boddie@nokia.com>2010-11-28 19:44:21 (GMT)
committerDavid Boddie <david.boddie@nokia.com>2010-11-28 19:44:21 (GMT)
commit344c3ad32bd36ad67731aa3171103a6c5e2f93e0 (patch)
tree218e2ae90de49df48f2fc7fc0f9e1ebd6571bf6e /tools/qdoc3/main.cpp
parentb81081ff67d3e27e36c8165c9b0814feca1fcf15 (diff)
downloadQt-344c3ad32bd36ad67731aa3171103a6c5e2f93e0.zip
Qt-344c3ad32bd36ad67731aa3171103a6c5e2f93e0.tar.gz
Qt-344c3ad32bd36ad67731aa3171103a6c5e2f93e0.tar.bz2
Added the foundations of QML markup support.
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.
Diffstat (limited to 'tools/qdoc3/main.cpp')
-rw-r--r--tools/qdoc3/main.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/qdoc3/main.cpp b/tools/qdoc3/main.cpp
index 2d3f034..ac1c5de 100644
--- a/tools/qdoc3/main.cpp
+++ b/tools/qdoc3/main.cpp
@@ -55,6 +55,7 @@
#include "htmlgenerator.h"
#include "plaincodemarker.h"
#include "puredocparser.h"
+#include "qmlcodemarker.h"
#include "qmlcodeparser.h"
#include "tokenizer.h"
#include "tree.h"
@@ -243,14 +244,6 @@ static void processQdocconfFile(const QString &fileName)
Location outputFormatsLocation = config.lastLocation();
/*
- There must be a code marker for the source code language, e.g. C++.
- If there isn't one, give up.
- */
- CodeMarker *marker = CodeMarker::markerForLanguage(lang);
- if (!marker && !outputFormats.isEmpty())
- langLocation.fatal(tr("Cannot output documentation for programming language '%1'").arg(lang));
-
- /*
Read some XML indexes containing definitions from other documentation sets.
*/
QStringList indexFiles = config.getStringList(CONFIG_INDEXES);
@@ -334,7 +327,7 @@ static void processQdocconfFile(const QString &fileName)
if (generator == 0)
outputFormatsLocation.fatal(tr("Unknown output format '%1'")
.arg(*of));
- generator->generateTree(tree, marker);
+ generator->generateTree(tree);
++of;
}
@@ -390,6 +383,7 @@ int main(int argc, char **argv)
*/
PlainCodeMarker plainMarker;
CppCodeMarker cppMarker;
+ QmlCodeMarker qmlMarker;
HtmlGenerator htmlGenerator;
DitaXmlGenerator ditaxmlGenerator;