/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms and ** conditions see http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "ansiescapecodehandler.h" #include "outputformatter.h" #include "theme/theme.h" #include namespace Utils { namespace Internal { class OutputFormatterPrivate { public: OutputFormatterPrivate() : plainTextEdit(0) , formats(0) , escapeCodeHandler(new AnsiEscapeCodeHandler) , overwriteOutput(false) { } ~OutputFormatterPrivate() { delete[] formats; delete escapeCodeHandler; } QPlainTextEdit *plainTextEdit; QTextCharFormat *formats; QFont font; AnsiEscapeCodeHandler *escapeCodeHandler; bool overwriteOutput; }; } // namespace Internal OutputFormatter::OutputFormatter() : d(new Internal::OutputFormatterPrivate) { } OutputFormatter::~OutputFormatter() { delete d; } QPlainTextEdit *OutputFormatter::plainTextEdit() const { return d->plainTextEdit; } void OutputFormatter::setPlainTextEdit(QPlainTextEdit *plainText) { d->plainTextEdit = plainText; initFormats(); } void OutputFormatter::appendMessage(const QString &text, OutputFormat format) { appendMessage(text, d->formats[format]); } void OutputFormatter::appendMessage(const QString &text, const QTextCharFormat &format) { QTextCursor cursor(d->plainTextEdit->document()); cursor.movePosition(QTextCursor::End); foreach (const FormattedText &output, parseAnsi(text, format)) { int startPos = 0; int crPos = -1; while ((crPos = output.text.indexOf(QLatin1Char('\r'), startPos)) >= 0) { append(cursor, output.text.mid(startPos, crPos - startPos), output.format); startPos = crPos + 1; d->overwriteOutput = true; } if (startPos < output.text.count()) append(cursor, output.text.mid(startPos), output.format); } } QTextCharFormat OutputFormatter::charFormat(OutputFormat format) const { return d->formats[format]; } QList OutputFormatter::parseAnsi(const QString &text, const QTextCharFormat &format) { return d->escapeCodeHandler->parseText(FormattedText(text, format)); } void OutputFormatter::append(QTextCursor &cursor, const QString &text, const QTextCharFormat &format) { if (d->overwriteOutput) { cursor.clearSelection(); cursor.movePosition(QTextCursor::StartOfBlock, QTextCursor::KeepAnchor); d->overwriteOutput = false; } cursor.insertText(text, format); } void OutputFormatter::clearLastLine() { QTextCursor cursor(d->plainTextEdit->document()); cursor.movePosition(QTextCursor::End); cursor.movePosition(QTextCursor::StartOfBlock, QTextCursor::KeepAnchor); cursor.removeSelectedText(); } void OutputFormatter::initFormats() { if (!plainTextEdit()) return; QFont boldFont = d->font; boldFont.setBold(true); d->formats = new QTextCharFormat[NumberOfFormats]; Theme *theme = creatorTheme(); // NormalMessageFormat d->formats[NormalMessageFormat].setFont(boldFont); d->formats[NormalMessageFormat].setForeground(theme->color(Theme::OutputFormatter_NormalMessageTextColor)); // ErrorMessageFormat d->formats[ErrorMessageFormat].setFont(boldFont); d->formats[ErrorMessageFormat].setForeground(theme->color(Theme::OutputFormatter_ErrorMessageTextColor)); // StdOutFormat d->formats[StdOutFormat].setFont(d->font); d->formats[StdOutFormat].setForeground(theme->color(Theme::OutputFormatter_StdOutTextColor)); d->formats[StdOutFormatSameLine] = d->formats[StdOutFormat]; // StdErrFormat d->formats[StdErrFormat].setFont(d->font); d->formats[StdErrFormat].setForeground(theme->color(Theme::OutputFormatter_StdErrTextColor)); d->formats[StdErrFormatSameLine] = d->formats[StdErrFormat]; d->formats[DebugFormat].setFont(d->font); d->formats[DebugFormat].setForeground(theme->color(Theme::OutputFormatter_DebugTextColor)); } void OutputFormatter::handleLink(const QString &href) { Q_UNUSED(href); } QFont OutputFormatter::font() const { return d->font; } void OutputFormatter::setFont(const QFont &font) { d->font = font; initFormats(); } void OutputFormatter::flush() { d->escapeCodeHandler->endFormatScope(); } } // namespace Utils