1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the tools applications of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | /*
|
---|
43 | generator.h
|
---|
44 | */
|
---|
45 |
|
---|
46 | #ifndef GENERATOR_H
|
---|
47 | #define GENERATOR_H
|
---|
48 |
|
---|
49 | #include <qlist.h>
|
---|
50 | #include <qmap.h>
|
---|
51 | #include <qregexp.h>
|
---|
52 | #include <qstring.h>
|
---|
53 | #include <qstringlist.h>
|
---|
54 |
|
---|
55 | #include "node.h"
|
---|
56 | #include "text.h"
|
---|
57 |
|
---|
58 | QT_BEGIN_NAMESPACE
|
---|
59 |
|
---|
60 | class ClassNode;
|
---|
61 | class Config;
|
---|
62 | class CodeMarker;
|
---|
63 | class FakeNode;
|
---|
64 | class FunctionNode;
|
---|
65 | class InnerNode;
|
---|
66 | class Location;
|
---|
67 | class NamespaceNode;
|
---|
68 | class Node;
|
---|
69 | class Tree;
|
---|
70 |
|
---|
71 | class Generator
|
---|
72 | {
|
---|
73 | public:
|
---|
74 | Generator();
|
---|
75 | virtual ~Generator();
|
---|
76 |
|
---|
77 | virtual void initializeGenerator(const Config &config);
|
---|
78 | virtual void terminateGenerator();
|
---|
79 | virtual QString format() = 0;
|
---|
80 | virtual bool canHandleFormat(const QString &format) { return format == this->format(); }
|
---|
81 | virtual void generateTree(const Tree *tree, CodeMarker *marker) = 0;
|
---|
82 |
|
---|
83 | static void initialize(const Config& config);
|
---|
84 | static void terminate();
|
---|
85 | static Generator *generatorForFormat(const QString& format);
|
---|
86 |
|
---|
87 | protected:
|
---|
88 | virtual void startText(const Node *relative, CodeMarker *marker);
|
---|
89 | virtual void endText(const Node *relative, CodeMarker *marker);
|
---|
90 | virtual int generateAtom(const Atom *atom,
|
---|
91 | const Node *relative,
|
---|
92 | CodeMarker *marker);
|
---|
93 | virtual void generateClassLikeNode(const InnerNode *inner, CodeMarker *marker);
|
---|
94 | virtual void generateFakeNode(const FakeNode *fake, CodeMarker *marker);
|
---|
95 |
|
---|
96 | virtual bool generateText(const Text& text,
|
---|
97 | const Node *relative,
|
---|
98 | CodeMarker *marker);
|
---|
99 | #ifdef QDOC_QML
|
---|
100 | virtual bool generateQmlText(const Text& text,
|
---|
101 | const Node *relative,
|
---|
102 | CodeMarker *marker,
|
---|
103 | const QString& qmlName);
|
---|
104 | virtual void generateQmlInherits(const QmlClassNode* cn,
|
---|
105 | CodeMarker* marker);
|
---|
106 | #endif
|
---|
107 | virtual void generateBody(const Node *node, CodeMarker *marker);
|
---|
|
---|