0
|
1 |
/****************************************************************************
|
|
2 |
**
|
|
3 |
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
** All rights reserved.
|
|
5 |
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
6 |
**
|
|
7 |
** This file is part of the Qt Assistant of the Qt Toolkit.
|
|
8 |
**
|
|
9 |
** $QT_BEGIN_LICENSE:LGPL$
|
|
10 |
** No Commercial Usage
|
|
11 |
** This file contains pre-release code and may not be distributed.
|
|
12 |
** You may use this file in accordance with the terms and conditions
|
|
13 |
** contained in the Technology Preview License Agreement accompanying
|
|
14 |
** this package.
|
|
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 |
** If you have questions regarding the use of this file, please contact
|
|
29 |
** Nokia at qt-info@nokia.com.
|
|
30 |
**
|
|
31 |
**
|
|
32 |
**
|
|
33 |
**
|
|
34 |
**
|
|
35 |
**
|
|
36 |
**
|
|
37 |
**
|
|
38 |
** $QT_END_LICENSE$
|
|
39 |
**
|
|
40 |
****************************************************************************/
|
|
41 |
|
|
42 |
#ifndef QHELP_GLOBAL_H
|
|
43 |
#define QHELP_GLOBAL_H
|
|
44 |
|
|
45 |
#include <QtCore/qglobal.h>
|
|
46 |
#include <QtCore/QString>
|
|
47 |
#include <QtCore/QObject>
|
|
48 |
#include <QtCore/QRegExp>
|
|
49 |
#include <QtCore/QMutexLocker>
|
|
50 |
#include <QtGui/QTextDocument>
|
|
51 |
|
|
52 |
QT_BEGIN_HEADER
|
|
53 |
|
|
54 |
QT_BEGIN_NAMESPACE
|
|
55 |
|
|
56 |
QT_MODULE(Help)
|
|
57 |
|
|
58 |
#if !defined(QT_SHARED) && !defined(QT_DLL)
|
|
59 |
# define QHELP_EXPORT
|
|
60 |
#elif defined(QHELP_LIB)
|
|
61 |
# define QHELP_EXPORT Q_DECL_EXPORT
|
|
62 |
#else
|
|
63 |
# define QHELP_EXPORT Q_DECL_IMPORT
|
|
64 |
#endif
|
|
65 |
|
|
66 |
class QHelpGlobal {
|
|
67 |
public:
|
|
68 |
static QString uniquifyConnectionName(const QString &name, void *pointer)
|
|
69 |
{
|
|
70 |
static int counter = 0;
|
|
71 |
static QMutex mutex;
|
|
72 |
|
|
73 |
QMutexLocker locker(&mutex);
|
|
74 |
if (++counter > 1000)
|
|
75 |
counter = 0;
|
|
76 |
|
|
77 |
return QString::fromLatin1("%1-%2-%3")
|
|
78 |
.arg(name).arg(long(pointer)).arg(counter);
|
|
79 |
};
|
|
80 |
|
|
81 |
static QString documentTitle(const QString &content)
|
|
82 |
{
|
|
83 |
QString title = QObject::tr("Untitled");
|
|
84 |
if (!content.isEmpty()) {
|
|
85 |
int start = content.indexOf(QLatin1String("<title>"), 0, Qt::CaseInsensitive) + 7;
|
|
86 |
int end = content.indexOf(QLatin1String("</title>"), 0, Qt::CaseInsensitive);
|
|
87 |
if ((end - start) > 0) {
|
|
88 |
title = content.mid(start, end - start);
|
|
89 |
if (Qt::mightBeRichText(title) || title.contains(QLatin1Char('&'))) {
|
|
90 |
QTextDocument doc;
|
|
91 |
doc.setHtml(title);
|
|
92 |
title = doc.toPlainText();
|
|
93 |
}
|
|
94 |
}
|
|
95 |
}
|
|
96 |
return title;
|
|
97 |
};
|
|
98 |
|
|
99 |
static QString charsetFromData(const QByteArray &data)
|
|
100 |
{
|
|
101 |
QString content = QString::fromUtf8(data.constData(), data.size());
|
|
102 |
int start =
|
|
103 |
content.indexOf(QLatin1String("<meta"), 0, Qt::CaseInsensitive);
|
|
104 |
if (start > 0) {
|
|
105 |
int end;
|
|
106 |
QRegExp r(QLatin1String("charset=([^\"\\s]+)"));
|
|
107 |
while (start != -1) {
|
|
108 |
end = content.indexOf(QLatin1Char('>'), start) + 1;
|
|
109 |
const QString &meta = content.mid(start, end - start).toLower();
|
|
110 |
if (r.indexIn(meta) != -1)
|
|
111 |
return r.cap(1);
|
|
112 |
start = content.indexOf(QLatin1String("<meta"), end,
|
|
113 |
Qt::CaseInsensitive);
|
|
114 |
}
|
|
115 |
}
|
|
116 |
return QLatin1String("utf-8");
|
|
117 |
}
|
|
118 |
};
|
|
119 |
|
|
120 |
QT_END_NAMESPACE
|
|
121 |
|
|
122 |
QT_END_HEADER
|
|
123 |
|
|
124 |
#endif // QHELP_GLOBAL_H
|