OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / projectexplorer / outputformatter.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 "outputformatter.h"
34
35 #include <texteditor/fontsettings.h>
36 #include <texteditor/texteditorsettings.h>
37
38 #include <QtGui/QPlainTextEdit>
39 #include <QtGui/QColor>
40
41 #include <QtCore/QString>
42
43 using namespace ProjectExplorer;
44 using namespace TextEditor;
45
46 OutputFormatter::OutputFormatter()
47     : QObject()
48     , m_formats(0)
49 {
50
51 }
52
53 OutputFormatter::~OutputFormatter()
54 {
55     delete[] m_formats;
56 }
57
58 QPlainTextEdit *OutputFormatter::plainTextEdit() const
59 {
60     return m_plainTextEdit;
61 }
62
63 void OutputFormatter::setPlainTextEdit(QPlainTextEdit *plainText)
64 {
65     m_plainTextEdit = plainText;
66     initFormats();
67 }
68
69 void OutputFormatter::appendMessage(const QString &text, OutputFormat format)
70 {
71     QTextCursor cursor(m_plainTextEdit->document());
72     cursor.movePosition(QTextCursor::End);
73     cursor.insertText(text, m_formats[format]);
74 }
75
76 QTextCharFormat OutputFormatter::charFormat(OutputFormat format) const
77 {
78     return m_formats[format];
79 }
80
81 void OutputFormatter::clearLastLine()
82 {
83     QTextCursor cursor(m_plainTextEdit->document());
84     cursor.movePosition(QTextCursor::End);
85     cursor.movePosition(QTextCursor::StartOfBlock, QTextCursor::KeepAnchor);
86     cursor.removeSelectedText();
87 }
88
89 QColor OutputFormatter::mixColors(const QColor &a, const QColor &b)
90 {
91     return QColor((a.red() + 2 * b.red()) / 3, (a.green() + 2 * b.green()) / 3,
92                   (a.blue() + 2* b.blue()) / 3, (a.alpha() + 2 * b.alpha()) / 3);
93 }
94
95 void OutputFormatter::initFormats()
96 {
97     QPalette p = plainTextEdit()->palette();
98
99     FontSettings fs = TextEditorSettings::instance()->fontSettings();
100     QFont font = fs.font();
101     QFont boldFont = font;
102     boldFont.setBold(true);
103
104     m_formats = new QTextCharFormat[NumberOfFormats];
105
106     // NormalMessageFormat
107     m_formats[NormalMessageFormat].setFont(boldFont);
108     m_formats[NormalMessageFormat].setForeground(mixColors(p.color(QPalette::Text), QColor(Qt::blue)));
109
110     // ErrorMessageFormat
111     m_formats[ErrorMessageFormat].setFont(boldFont);
112     m_formats[ErrorMessageFormat].setForeground(mixColors(p.color(QPalette::Text), QColor(Qt::red)));
113
114     // StdOutFormat
115     m_formats[StdOutFormat].setFont(font);
116     m_formats[StdOutFormat].setForeground(p.color(QPalette::Text));
117     m_formats[StdOutFormatSameLine] = m_formats[StdOutFormat];
118
119     // StdErrFormat
120     m_formats[StdErrFormat].setFont(font);
121     m_formats[StdErrFormat].setForeground(mixColors(p.color(QPalette::Text), QColor(Qt::red)));
122     m_formats[StdErrFormatSameLine] = m_formats[StdErrFormat];
123 }
124
125 void OutputFormatter::handleLink(const QString &href)
126 {
127     Q_UNUSED(href);
128 }