/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://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 https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #include "ansiescapecodehandler.h" #include "outputformatter.h" #include "theme/theme.h" #include #include namespace Utils { namespace Internal { class OutputFormatterPrivate { public: OutputFormatterPrivate() : plainTextEdit(nullptr), overwriteOutput(false) {} QPlainTextEdit *plainTextEdit; QTextCharFormat formats[NumberOfFormats]; QFont font; QTextCursor cursor; 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; d->cursor = plainText ? plainText->textCursor() : QTextCursor(); initFormats(); } void OutputFormatter::appendMessage(const QString &text, OutputFormat format) { appendMessage(text, d->formats[format]); } void OutputFormatter::appendMessage(const QString &text, const QTextCharFormat &format) { if (!d->cursor.atEnd()) d->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(d->cursor, output.text.mid(startPos, crPos - startPos), output.format); startPos = crPos + 1; d->overwriteOutput = true; } if (startPos < output.text.count()) append(d->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() { if (!d->cursor.atEnd()) d->cursor.movePosition(QTextCursor::End); d->cursor.movePosition(QTextCursor::StartOfBlock, QTextCursor::KeepAnchor); d->cursor.removeSelectedText(); } void OutputFormatter::initFormats() { if (!plainTextEdit()) return; QFont boldFont; boldFont.setBold(true); Theme *theme = creatorTheme(); // NormalMessageFormat d->formats[NormalMessageFormat].setFont(boldFont, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[NormalMessageFormat].setForeground(theme->color(Theme::OutputPanes_NormalMessageTextColor)); // ErrorMessageFormat d->formats[ErrorMessageFormat].setFont(boldFont, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[ErrorMessageFormat].setForeground(theme->color(Theme::OutputPanes_ErrorMessageTextColor)); // LogMessageFormat d->formats[LogMessageFormat].setFont(d->font, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[LogMessageFormat].setForeground(theme->color(Theme::OutputPanes_WarningMessageTextColor)); // StdOutFormat d->formats[StdOutFormat].setFont(d->font, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[StdOutFormat].setForeground(theme->color(Theme::OutputPanes_StdOutTextColor)); d->formats[StdOutFormatSameLine] = d->formats[StdOutFormat]; // StdErrFormat d->formats[StdErrFormat].setFont(d->font, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[StdErrFormat].setForeground(theme->color(Theme::OutputPanes_StdErrTextColor)); d->formats[StdErrFormatSameLine] = d->formats[StdErrFormat]; d->formats[DebugFormat].setFont(d->font, QTextCharFormat::FontPropertiesSpecifiedOnly); d->formats[DebugFormat].setForeground(theme->color(Theme::OutputPanes_DebugTextColor)); } void OutputFormatter::handleLink(const QString &href) { Q_UNUSED(href); } void OutputFormatter::flush() { d->escapeCodeHandler.endFormatScope(); } } // namespace Utils