OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / profilehighlighter.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
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 #include "profilehighlighter.h"
34 #include "profilekeywords.h"
35
36 #include <QtCore/QRegExp>
37 #include <QtGui/QColor>
38 #include <QtGui/QTextDocument>
39 #include <QtGui/QTextEdit>
40
41 using namespace Qt4ProjectManager::Internal;
42
43
44 ProFileHighlighter::ProFileHighlighter(QTextDocument *document) :
45     TextEditor::SyntaxHighlighter(document)
46 {
47 }
48
49 void ProFileHighlighter::highlightBlock(const QString &text)
50 {
51     if (text.isEmpty())
52         return;
53
54     QString buf;
55     bool inCommentMode = false;
56
57     QTextCharFormat emptyFormat;
58     int i = 0;
59     for (;;) {
60         const QChar c = text.at(i);
61         if (inCommentMode) {
62             setFormat(i, 1, m_formats[ProfileCommentFormat]);
63         } else {
64             if (c.isLetter() || c == '_' || c == '.' || c.isDigit()) {
65                 buf += c;
66                 setFormat(i - buf.length()+1, buf.length(), emptyFormat);
67                 if (!buf.isEmpty() && ProFileKeywords::isFunction(buf))
68                     setFormat(i - buf.length()+1, buf.length(), m_formats[ProfileFunctionFormat]);
69                 else if (!buf.isEmpty() && ProFileKeywords::isVariable(buf))
70                     setFormat(i - buf.length()+1, buf.length(), m_formats[ProfileVariableFormat]);
71             } else if (c == '(') {
72                 if (!buf.isEmpty() && ProFileKeywords::isFunction(buf))
73                     setFormat(i - buf.length(), buf.length(), m_formats[ProfileFunctionFormat]);
74                 buf.clear();
75             } else if (c == '#') {
76                 inCommentMode = true;
77                 setFormat(i, 1, m_formats[ProfileCommentFormat]);
78                 buf.clear();
79             } else {
80                 if (!buf.isEmpty() && ProFileKeywords::isVariable(buf))
81                     setFormat(i - buf.length(), buf.length(), m_formats[ProfileVariableFormat]);
82                 buf.clear();
83             }
84         }
85         i++;
86         if (i >= text.length())
87             break;
88     }
89
90     applyFormatToSpaces(text, m_formats[ProfileVisualWhitespaceFormat]);
91 }