Ignore:
Timestamp:
Feb 11, 2010, 11:19:06 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.1 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/tools/assistant/lib/qhelp_global.h

    r2 r561  
    22**
    33** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
    4 ** Contact: Qt Software Information (qt-info@nokia.com)
     4** All rights reserved.
     5** Contact: Nokia Corporation (qt-info@nokia.com)
    56**
    67** This file is part of the Qt Assistant of the Qt Toolkit.
     
    2122** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
    2223**
    23 ** In addition, as a special exception, Nokia gives you certain
    24 ** additional rights. These rights are described in the Nokia Qt LGPL
    25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
    26 ** package.
     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.
    2727**
    2828** GNU General Public License Usage
     
    3434** met: http://www.gnu.org/copyleft/gpl.html.
    3535**
    36 ** If you are unsure which license is appropriate for your use, please
    37 ** contact the sales department at qt-sales@nokia.com.
     36** If you have questions regarding the use of this file, please contact
     37** Nokia at qt-info@nokia.com.
    3838** $QT_END_LICENSE$
    3939**
     
    4646#include <QtCore/QString>
    4747#include <QtCore/QObject>
    48 #include <QtCore/QRegExp>
    49 #include <QtCore/QMutexLocker>
    50 #include <QtGui/QTextDocument>
    5148
    5249QT_BEGIN_HEADER
     
    6663class QHelpGlobal {
    6764public:
    68     static QString uniquifyConnectionName(const QString &name, void *pointer)
    69     {
    70         static int counter = 0;
    71         static QMutex mutex;
     65    static QString uniquifyConnectionName(const QString &name, void *pointer);
     66    static QString documentTitle(const QString &content);
     67    static QString codecFromData(const QByteArray &data);
    7268
    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     }
     69private:
     70    static QString codecFromHtmlData(const QByteArray &data);
     71    static QString codecFromXmlData(const QByteArray &data);
    11872};
    11973
Note: See TracChangeset for help on using the changeset viewer.