OSDN Git Service

Fix qreal is not double.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / valgrind / callgrindhelper.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 **
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 "callgrindhelper.h"
34
35 #include <cstdlib>
36
37 #include <QtGui/QColor>
38 #include <QtCore/QMap>
39 #include <QtCore/QString>
40
41 namespace Valgrind {
42 namespace Internal {
43
44 QColor CallgrindHelper::colorForString(const QString &text)
45 {
46     static QMap<QString, QColor> colorCache;
47
48     if (colorCache.contains(text))
49         return colorCache.value(text);
50
51     // Minimum lightness of 100 to be readable with black text.
52     const QColor color = QColor::fromHsl(((qreal)qrand() / RAND_MAX * 359),
53                                          ((qreal)qrand() / RAND_MAX * 255),
54                                          ((qreal)qrand() / RAND_MAX * 127) + 128);
55     colorCache[text] = color;
56     return color;
57 }
58
59 QColor CallgrindHelper::colorForCostRatio(qreal ratio)
60 {
61     ratio = qBound(qreal(0.0), ratio, qreal(1.0));
62     return QColor::fromHsv(120 - ratio * 120, 255, 255, (-((ratio-1) * (ratio-1))) * 120 + 120);
63 }
64
65 QString CallgrindHelper::toPercent(float costs, const QLocale &locale)
66 {
67     if (costs > 99.9f)
68         return locale.toString(100) + locale.percent();
69     if (costs > 9.99f)
70         return locale.toString(costs, 'f', 1) + locale.percent();
71     if (costs > 0.009f)
72         return locale.toString(costs, 'f', 2) + locale.percent();
73     return QString("<") + locale.toString(0.01f) + locale.percent();
74 }
75
76 } // namespace Internal
77 } // namespace Valgrind