OSDN Git Service

4830375a9938e3d7f8f90a249a7204af795c9ea3
[qt-creator-jp/qt-creator-jp.git] / src / plugins / vcsbase / baseannotationhighlighter.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 (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
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 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "baseannotationhighlighter.h"
35
36 #include <math.h>
37 #include <QtCore/QSet>
38 #include <QtCore/QDebug>
39 #include <QtGui/QColor>
40 #include <QtGui/QTextDocument>
41 #include <QtGui/QTextEdit>
42 #include <QtGui/QTextCharFormat>
43
44 typedef QMap<QString, QTextCharFormat> ChangeNumberFormatMap;
45
46 namespace VCSBase {
47
48 struct BaseAnnotationHighlighterPrivate {
49     ChangeNumberFormatMap m_changeNumberMap;
50 };
51
52 BaseAnnotationHighlighter::BaseAnnotationHighlighter(const ChangeNumbers &changeNumbers,
53                                              QTextDocument *document) :
54     TextEditor::SyntaxHighlighter(document),
55     m_d(new BaseAnnotationHighlighterPrivate)
56 {
57     setChangeNumbers(changeNumbers);
58 }
59
60 BaseAnnotationHighlighter::~BaseAnnotationHighlighter()
61 {
62     delete m_d;
63 }
64
65 void BaseAnnotationHighlighter::setChangeNumbers(const ChangeNumbers &changeNumbers)
66 {
67     m_d->m_changeNumberMap.clear();
68     if (!changeNumbers.isEmpty()) {
69         // Assign a color gradient to annotation change numbers. Give
70         // each change number a unique color.
71         const double oneThird = 1.0 / 3.0;
72         const int step = qRound(ceil(pow(double(changeNumbers.count()), oneThird)));
73         QList<QColor> colors;
74         const int factor = 255 / step;
75         for (int i=0; i<step; ++i)
76             for (int j=0; j<step; ++j)
77                 for (int k=0; k<step; ++k)
78                     colors.append(QColor(i*factor, j*factor, k*factor));
79
80         int m = 0;
81         const int cstep = colors.count() / changeNumbers.count();
82         const ChangeNumbers::const_iterator cend = changeNumbers.constEnd();
83         for (ChangeNumbers::const_iterator it =  changeNumbers.constBegin(); it != cend; ++it) {
84             QTextCharFormat format;
85             format.setForeground(colors.at(m));
86             m_d->m_changeNumberMap.insert(*it, format);
87             m += cstep;
88         }
89     }
90 }
91
92 void BaseAnnotationHighlighter::highlightBlock(const QString &text)
93 {
94     if (text.isEmpty() || m_d->m_changeNumberMap.empty())
95         return;
96     const QString change = changeNumber(text);
97     const ChangeNumberFormatMap::const_iterator it = m_d->m_changeNumberMap.constFind(change);
98     if (it != m_d->m_changeNumberMap.constEnd())
99         setFormat(0, text.length(), it.value());
100 }
101
102 } // namespace VCSBase