source: trunk/tools/qdoc3/webxmlgenerator.h@ 865

Last change on this file since 865 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.1 KB
Line 
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 WebXMLGenerator.h
44*/
45
46#ifndef WEBXMLGENERATOR_H
47#define WEBXMLGENERATOR_H
48
49#include <QtCore/qxmlstream.h>
50
51#include "codemarker.h"
52#include "config.h"
53#include "pagegenerator.h"
54
55QT_BEGIN_NAMESPACE
56
57class QXmlStreamReader;
58class QXmlStreamWriter;
59
60class WebXMLGenerator : public PageGenerator
61{
62public:
63 WebXMLGenerator();
64 ~WebXMLGenerator();
65
66 virtual void initializeGenerator(const Config &config);
67 virtual void terminateGenerator();
68 virtual QString format();
69 virtual void generateTree(const Tree *tree, CodeMarker *marker);
70
71protected:
72 virtual void startText( const Node *relative, CodeMarker *marker );
73 virtual int generateAtom(QXmlStreamWriter &writer, const Atom *atom,
74 const Node *relative, CodeMarker *marker );
75 virtual void generateClassLikeNode(const InnerNode *inner, CodeMarker *marker);
76 virtual void generateFakeNode(const FakeNode *fake, CodeMarker *marker);
77 virtual QString fileExtension(const Node *node) const;
78
79 virtual const Atom *addAtomElements(QXmlStreamWriter &writer, const Atom *atom,
80 const Node *relative, CodeMarker *marker);
81 virtual void generateIndexSections(QXmlStreamWriter &writer, const Node *node,
82 CodeMarker *marker);
83 virtual void generateInnerNode( const InnerNode *node, CodeMarker *marker );
84
85private:
86 const QPair<QString,QString> anchorForNode(const Node *node);
87 void findAllClasses(const InnerNode *node);
88 void findAllNamespaces(const InnerNode *node);
89 const Node *findNode(const Atom *atom, const Node *relative, CodeMarker *marker);
90 const Node *findNode(const QString &title, const Node *relative, CodeMarker *marker);
91 void generateAnnotatedList(QXmlStreamWriter &writer, const Node *relative,
92 CodeMarker *marker, const QMap<QString,
93 const Node *> &nodeMap);
94 void generateFullName(QXmlStreamWriter &writer, const Node *apparentNode,
95 const Node *relative, CodeMarker *marker,
96 const Node *actualNode = 0);
97 void generateRelations(QXmlStreamWriter &writer, const Node *node, CodeMarker *marker);
98 void generateTableOfContents(QXmlStreamWriter &writer, const Node *node,
99 Doc::SectioningUnit sectioningUnit,
100 int numColumns, const Node *relative);
101 void startLink(QXmlStreamWriter &writer, const Atom *atom, const Node *node,
102 const Node *relative);
103 QString targetType(const Node *node);
104
105 const Tree *tre;
106 bool generateIndex;
107 bool inLink;
108 bool inContents;
109 bool inSectionHeading;
110 bool inTableHeader;
111 int numTableRows;
112 bool threeColumnEnumValueTable;
113 QMap<QString, QMap<QString, const Node *> > moduleClassMap;
114 QMap<QString, QMap<QString, const Node *> > moduleNamespaceMap;
115 QMap<QString, const Node *> namespaceIndex;
116 QMap<QString, const Node *> serviceClasses;
117 QString link;
118 QString project;
119 QString projectDescription;
120 QString projectUrl;
121 QString quoteCommand;
122 QStringList sectionNumber;
123};
124
125QT_END_NAMESPACE
126
127#endif
Note: See TracBrowser for help on using the repository browser.