messagingapp/msgui/unifiedviewer/inc/unihighlighter.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 15:49:35 +0300
changeset 27 e4592d119491
parent 23 238255e8b033
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description: Enables parsing and change font parameters for email/url
 *
 */

#ifndef UNI_HIGHLIGHTER_H
#define UNI_HIGHLIGHTER_H

#include <QSyntaxHighlighter>
#include <QHash>
#include <QTextCharFormat>

QT_BEGIN_NAMESPACE
class QTextDocument;
QT_END_NAMESPACE

/**
 * Enables parsing and change font parameters for email/url
 */
class UniHighlighter : public QSyntaxHighlighter
{
Q_OBJECT

public:
    /*
     * Constructor
     */
    UniHighlighter(QTextDocument *parent = 0);

protected:
    /*
     * highlightBlock
     * @see QSyntaxHighlighter
     */
    void highlightBlock(const QString &text);

private:

    struct HighlightingRule
    {
        QRegExp pattern;
        QTextCharFormat format;
    };
    QVector<HighlightingRule> highlightingRules;

    QTextCharFormat emailFormat;
    QTextCharFormat urlFormat;
};

#endif //UNI_HIGHLIGHTER_H
// EOF