comparison generator/classlistgenerator.cpp @ 1:e78566595089

initial import
author mandel
date Mon, 11 May 2009 16:01:50 +0000
parents
children
comparison
equal deleted inserted replaced
0:36fb74dc547d 1:e78566595089
1 /****************************************************************************
2 **
3 ** Copyright (C) 1992-2008 Nokia. All rights reserved.
4 **
5 ** This file is part of Qt Jambi.
6 **
7 ** * Commercial Usage
8 * Licensees holding valid Qt Commercial licenses may use this file in
9 * accordance with the Qt Commercial License Agreement provided with the
10 * Software or, alternatively, in accordance with the terms contained in
11 * a written agreement between you and Nokia.
12 *
13 *
14 * GNU General Public License Usage
15 * Alternatively, this file may be used under the terms of the GNU
16 * General Public License versions 2.0 or 3.0 as published by the Free
17 * Software Foundation and appearing in the file LICENSE.GPL included in
18 * the packaging of this file. Please review the following information
19 * to ensure GNU General Public Licensing requirements will be met:
20 * http://www.fsf.org/licensing/licenses/info/GPLv2.html and
21 * http://www.gnu.org/copyleft/gpl.html. In addition, as a special
22 * exception, Nokia gives you certain additional rights. These rights
23 * are described in the Nokia Qt GPL Exception version 1.2, included in
24 * the file GPL_EXCEPTION.txt in this package.
25 *
26 * Qt for Windows(R) Licensees
27 * As a special exception, Nokia, as the sole copyright holder for Qt
28 * Designer, grants users of the Qt/Eclipse Integration plug-in the
29 * right for the Qt/Eclipse Integration to link to functionality
30 * provided by Qt Designer and its related libraries.
31 *
32 *
33 * If you are unsure which license is appropriate for your use, please
34 * contact the sales department at qt-sales@nokia.com.
35
36 **
37 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
38 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
39 **
40 ****************************************************************************/
41
42 #include "classlistgenerator.h"
43
44 QString ClassListGenerator::fileName() const { return "qtjambi-classes.qdoc"; }
45
46 static bool class_sorter(AbstractMetaClass *a, AbstractMetaClass *b)
47 {
48 return a->name() < b->name();
49 }
50
51 void ClassListGenerator::generate()
52 {
53 QFile f(fileName());
54 if (f.open(QFile::WriteOnly)) {
55 QTextStream s(&f);
56
57 s << "/****************************************************************************" << endl
58 << "**" << endl
59 << "** This is a generated file, please don't touch." << endl
60 << "**" << endl
61 << "****************************************************************************/" << endl << endl;
62
63 s << "/*!" << endl
64 << "\\page qtjambi-classes.html" << endl << endl
65 << "\\title Qt Jambi's classes" << endl << endl
66 << "This is a list of all Qt Jambi classes." << endl << endl
67 << "\\table 100%" << endl;
68
69 AbstractMetaClassList classes = Generator::classes();
70 qSort(classes.begin(), classes.end(), class_sorter);
71
72 int numColumns = 4;
73 int numRows = (classes.size() + numColumns - 1) / numColumns;
74
75 for (int i = 0; i < numRows; ++i) {
76 s << endl << "\\row ";
77 for (int j=0; j<numColumns; ++j) {
78 if (classes.value(i + j * numRows)) {
79 s << "\\o \\l{" << classes.value(i + j * numRows)->qualifiedCppName()
80 << "}{" << classes.value(i + j * numRows)->name() << "} ";
81 }
82 }
83
84 }
85
86 s << endl << "\\endtable" << endl
87 << "*/" << endl;
88 }
89 }