forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
307 lines
9.6 KiB
C++
307 lines
9.6 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "compileoutputwindow.h"
|
|
|
|
#include "buildmanager.h"
|
|
#include "ioutputparser.h"
|
|
#include "projectexplorer.h"
|
|
#include "projectexplorericons.h"
|
|
#include "projectexplorersettings.h"
|
|
#include "showoutputtaskhandler.h"
|
|
#include "task.h"
|
|
#include "taskhub.h"
|
|
|
|
#include <coreplugin/outputwindow.h>
|
|
#include <coreplugin/icore.h>
|
|
#include <coreplugin/coreconstants.h>
|
|
#include <extensionsystem/pluginmanager.h>
|
|
#include <texteditor/texteditorsettings.h>
|
|
#include <texteditor/fontsettings.h>
|
|
#include <texteditor/behaviorsettings.h>
|
|
#include <utils/algorithm.h>
|
|
#include <utils/outputformatter.h>
|
|
#include <utils/proxyaction.h>
|
|
#include <utils/theme/theme.h>
|
|
#include <utils/utilsicons.h>
|
|
|
|
#include <QCheckBox>
|
|
#include <QHBoxLayout>
|
|
#include <QIcon>
|
|
#include <QLabel>
|
|
#include <QPlainTextEdit>
|
|
#include <QSpinBox>
|
|
#include <QTextBlock>
|
|
#include <QTextCharFormat>
|
|
#include <QTextCursor>
|
|
#include <QToolButton>
|
|
#include <QVBoxLayout>
|
|
|
|
namespace ProjectExplorer {
|
|
namespace Internal {
|
|
|
|
const char SETTINGS_KEY[] = "ProjectExplorer/CompileOutput/Zoom";
|
|
const char C_COMPILE_OUTPUT[] = "ProjectExplorer.CompileOutput";
|
|
const char POP_UP_KEY[] = "ProjectExplorer/Settings/ShowCompilerOutput";
|
|
const char WRAP_OUTPUT_KEY[] = "ProjectExplorer/Settings/WrapBuildOutput";
|
|
const char MAX_LINES_KEY[] = "ProjectExplorer/Settings/MaxBuildOutputLines";
|
|
const char OPTIONS_PAGE_ID[] = "C.ProjectExplorer.CompileOutputOptions";
|
|
|
|
CompileOutputWindow::CompileOutputWindow(QAction *cancelBuildAction) :
|
|
m_cancelBuildButton(new QToolButton),
|
|
m_settingsButton(new QToolButton)
|
|
{
|
|
Core::Context context(C_COMPILE_OUTPUT);
|
|
m_outputWindow = new Core::OutputWindow(context, SETTINGS_KEY);
|
|
m_outputWindow->setWindowTitle(displayName());
|
|
m_outputWindow->setWindowIcon(Icons::WINDOW.icon());
|
|
m_outputWindow->setReadOnly(true);
|
|
m_outputWindow->setUndoRedoEnabled(false);
|
|
m_outputWindow->setMaxCharCount(Core::Constants::DEFAULT_MAX_CHAR_COUNT);
|
|
|
|
Utils::ProxyAction *cancelBuildProxyButton =
|
|
Utils::ProxyAction::proxyActionWithIcon(cancelBuildAction,
|
|
Utils::Icons::STOP_SMALL_TOOLBAR.icon());
|
|
m_cancelBuildButton->setDefaultAction(cancelBuildProxyButton);
|
|
m_settingsButton->setToolTip(tr("Open Settings Page"));
|
|
m_settingsButton->setIcon(Utils::Icons::SETTINGS_TOOLBAR.icon());
|
|
|
|
auto updateFontSettings = [this] {
|
|
m_outputWindow->setBaseFont(TextEditor::TextEditorSettings::fontSettings().font());
|
|
};
|
|
|
|
auto updateZoomEnabled = [this] {
|
|
m_outputWindow->setWheelZoomEnabled(
|
|
TextEditor::TextEditorSettings::behaviorSettings().m_scrollWheelZooming);
|
|
};
|
|
|
|
updateFontSettings();
|
|
updateZoomEnabled();
|
|
setupFilterUi("CompileOutputPane.Filter");
|
|
setFilteringEnabled(true);
|
|
|
|
connect(this, &IOutputPane::zoomInRequested, m_outputWindow, &Core::OutputWindow::zoomIn);
|
|
connect(this, &IOutputPane::zoomOutRequested, m_outputWindow, &Core::OutputWindow::zoomOut);
|
|
connect(this, &IOutputPane::resetZoomRequested, m_outputWindow, &Core::OutputWindow::resetZoom);
|
|
connect(TextEditor::TextEditorSettings::instance(), &TextEditor::TextEditorSettings::fontSettingsChanged,
|
|
this, updateFontSettings);
|
|
connect(TextEditor::TextEditorSettings::instance(), &TextEditor::TextEditorSettings::behaviorSettingsChanged,
|
|
this, updateZoomEnabled);
|
|
|
|
connect(m_settingsButton, &QToolButton::clicked, this, [] {
|
|
Core::ICore::showOptionsDialog(OPTIONS_PAGE_ID);
|
|
});
|
|
|
|
qRegisterMetaType<QTextCharFormat>("QTextCharFormat");
|
|
|
|
m_handler = new ShowOutputTaskHandler(this,
|
|
tr("Show Compile &Output"),
|
|
tr("Show the output that generated this issue in Compile Output."),
|
|
tr("O"));
|
|
ExtensionSystem::PluginManager::addObject(m_handler);
|
|
setupContext(C_COMPILE_OUTPUT, m_outputWindow);
|
|
loadSettings();
|
|
updateFromSettings();
|
|
}
|
|
|
|
CompileOutputWindow::~CompileOutputWindow()
|
|
{
|
|
ExtensionSystem::PluginManager::removeObject(m_handler);
|
|
delete m_handler;
|
|
delete m_cancelBuildButton;
|
|
delete m_settingsButton;
|
|
}
|
|
|
|
void CompileOutputWindow::updateFromSettings()
|
|
{
|
|
m_outputWindow->setWordWrapEnabled(m_settings.wrapOutput);
|
|
m_outputWindow->setMaxCharCount(m_settings.maxCharCount);
|
|
}
|
|
|
|
bool CompileOutputWindow::hasFocus() const
|
|
{
|
|
return m_outputWindow->window()->focusWidget() == m_outputWindow;
|
|
}
|
|
|
|
bool CompileOutputWindow::canFocus() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void CompileOutputWindow::setFocus()
|
|
{
|
|
m_outputWindow->setFocus();
|
|
}
|
|
|
|
QWidget *CompileOutputWindow::outputWidget(QWidget *)
|
|
{
|
|
return m_outputWindow;
|
|
}
|
|
|
|
QList<QWidget *> CompileOutputWindow::toolBarWidgets() const
|
|
{
|
|
return QList<QWidget *>{m_cancelBuildButton, m_settingsButton} + IOutputPane::toolBarWidgets();
|
|
}
|
|
|
|
void CompileOutputWindow::appendText(const QString &text, BuildStep::OutputFormat format)
|
|
{
|
|
Utils::OutputFormat fmt = Utils::NormalMessageFormat;
|
|
switch (format) {
|
|
case BuildStep::OutputFormat::Stdout:
|
|
fmt = Utils::StdOutFormat;
|
|
break;
|
|
case BuildStep::OutputFormat::Stderr:
|
|
fmt = Utils::StdErrFormat;
|
|
break;
|
|
case BuildStep::OutputFormat::NormalMessage:
|
|
fmt = Utils::NormalMessageFormat;
|
|
break;
|
|
case BuildStep::OutputFormat::ErrorMessage:
|
|
fmt = Utils::ErrorMessageFormat;
|
|
break;
|
|
|
|
}
|
|
|
|
m_outputWindow->appendMessage(text, fmt);
|
|
}
|
|
|
|
void CompileOutputWindow::clearContents()
|
|
{
|
|
m_outputWindow->clear();
|
|
}
|
|
|
|
int CompileOutputWindow::priorityInStatusBar() const
|
|
{
|
|
return 50;
|
|
}
|
|
|
|
bool CompileOutputWindow::canNext() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool CompileOutputWindow::canPrevious() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void CompileOutputWindow::goToNext()
|
|
{ }
|
|
|
|
void CompileOutputWindow::goToPrev()
|
|
{ }
|
|
|
|
bool CompileOutputWindow::canNavigate() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void CompileOutputWindow::registerPositionOf(const Task &task, int linkedOutputLines, int skipLines,
|
|
int offset)
|
|
{
|
|
m_outputWindow->registerPositionOf(task.taskId, linkedOutputLines, skipLines, offset);
|
|
}
|
|
|
|
void CompileOutputWindow::flush()
|
|
{
|
|
m_outputWindow->flush();
|
|
}
|
|
|
|
void CompileOutputWindow::reset()
|
|
{
|
|
m_outputWindow->reset();
|
|
}
|
|
|
|
void CompileOutputWindow::setSettings(const CompileOutputSettings &settings)
|
|
{
|
|
m_settings = settings;
|
|
storeSettings();
|
|
updateFromSettings();
|
|
}
|
|
|
|
Utils::OutputFormatter *CompileOutputWindow::outputFormatter() const
|
|
{
|
|
return m_outputWindow->outputFormatter();
|
|
}
|
|
|
|
void CompileOutputWindow::updateFilter()
|
|
{
|
|
m_outputWindow->updateFilterProperties(filterText(), filterCaseSensitivity(),
|
|
filterUsesRegexp(), filterIsInverted());
|
|
}
|
|
|
|
const bool kPopUpDefault = false;
|
|
const bool kWrapOutputDefault = true;
|
|
|
|
void CompileOutputWindow::loadSettings()
|
|
{
|
|
QSettings * const s = Core::ICore::settings();
|
|
m_settings.popUp = s->value(POP_UP_KEY, kPopUpDefault).toBool();
|
|
m_settings.wrapOutput = s->value(WRAP_OUTPUT_KEY, kWrapOutputDefault).toBool();
|
|
m_settings.maxCharCount = s->value(MAX_LINES_KEY,
|
|
Core::Constants::DEFAULT_MAX_CHAR_COUNT).toInt() * 100;
|
|
}
|
|
|
|
void CompileOutputWindow::storeSettings() const
|
|
{
|
|
Utils::QtcSettings *const s = Core::ICore::settings();
|
|
s->setValueWithDefault(POP_UP_KEY, m_settings.popUp, kPopUpDefault);
|
|
s->setValueWithDefault(WRAP_OUTPUT_KEY, m_settings.wrapOutput, kWrapOutputDefault);
|
|
s->setValueWithDefault(MAX_LINES_KEY,
|
|
m_settings.maxCharCount / 100,
|
|
Core::Constants::DEFAULT_MAX_CHAR_COUNT);
|
|
}
|
|
|
|
class CompileOutputSettingsWidget : public Core::IOptionsPageWidget
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(ProjectExplorer::Internal::CompileOutputSettingsPage)
|
|
public:
|
|
CompileOutputSettingsWidget()
|
|
{
|
|
const CompileOutputSettings &settings = BuildManager::compileOutputSettings();
|
|
m_wrapOutputCheckBox.setText(tr("Word-wrap output"));
|
|
m_wrapOutputCheckBox.setChecked(settings.wrapOutput);
|
|
m_popUpCheckBox.setText(tr("Open Compile Output when building"));
|
|
m_popUpCheckBox.setChecked(settings.popUp);
|
|
m_maxCharsBox.setMaximum(100000000);
|
|
m_maxCharsBox.setValue(settings.maxCharCount);
|
|
const auto layout = new QVBoxLayout(this);
|
|
layout->addWidget(&m_wrapOutputCheckBox);
|
|
layout->addWidget(&m_popUpCheckBox);
|
|
const auto maxCharsLayout = new QHBoxLayout;
|
|
const QString msg = tr("Limit output to %1 characters");
|
|
const QStringList parts = msg.split("%1") << QString() << QString();
|
|
maxCharsLayout->addWidget(new QLabel(parts.at(0).trimmed()));
|
|
maxCharsLayout->addWidget(&m_maxCharsBox);
|
|
maxCharsLayout->addWidget(new QLabel(parts.at(1).trimmed()));
|
|
maxCharsLayout->addStretch(1);
|
|
layout->addLayout(maxCharsLayout);
|
|
layout->addStretch(1);
|
|
}
|
|
|
|
void apply() final
|
|
{
|
|
CompileOutputSettings s;
|
|
s.wrapOutput = m_wrapOutputCheckBox.isChecked();
|
|
s.popUp = m_popUpCheckBox.isChecked();
|
|
s.maxCharCount = m_maxCharsBox.value();
|
|
BuildManager::setCompileOutputSettings(s);
|
|
}
|
|
|
|
private:
|
|
QCheckBox m_wrapOutputCheckBox;
|
|
QCheckBox m_popUpCheckBox;
|
|
QSpinBox m_maxCharsBox;
|
|
};
|
|
|
|
CompileOutputSettingsPage::CompileOutputSettingsPage()
|
|
{
|
|
setId(OPTIONS_PAGE_ID);
|
|
setDisplayName(CompileOutputSettingsWidget::tr("Compile Output"));
|
|
setCategory(Constants::BUILD_AND_RUN_SETTINGS_CATEGORY);
|
|
setWidgetCreator([] { return new CompileOutputSettingsWidget; });
|
|
}
|
|
|
|
} // Internal
|
|
} // ProjectExplorer
|