// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "showoutputtaskhandler.h" #include "task.h" #include #include #include #include namespace ProjectExplorer { namespace Internal { ShowOutputTaskHandler::ShowOutputTaskHandler( Core::IOutputPane *window, const QString &text, const QString &tooltip, const QString &shortcut) : ITaskHandler(createAction(text, tooltip, shortcut)) , m_window(window) , m_text(text) , m_tooltip(tooltip) , m_shortcut(shortcut) { QTC_CHECK(m_window); QTC_CHECK(!m_text.isEmpty()); } bool ShowOutputTaskHandler::canHandle(const Task &task) const { return Utils::anyOf(m_window->outputWindows(), [task](const Core::OutputWindow *ow) { return ow->knowsPositionOf(task.id()); }); } void ShowOutputTaskHandler::handle(const Task &task) { Q_ASSERT(canHandle(task)); // popup first as this does move the visible area! m_window->popup(Core::IOutputPane::Flags(Core::IOutputPane::ModeSwitch | Core::IOutputPane::WithFocus)); for (Core::OutputWindow * const ow : m_window->outputWindows()) { if (ow->knowsPositionOf(task.id())) { m_window->ensureWindowVisible(ow); ow->showPositionOf(task.id()); break; } } } QAction *ShowOutputTaskHandler::createAction(const QString &text, const QString &tooltip, const QString &shortcut) { QAction * const outputAction = new QAction(text); if (!tooltip.isEmpty()) outputAction->setToolTip(tooltip); if (!shortcut.isEmpty()) outputAction->setShortcut(QKeySequence(shortcut)); outputAction->setShortcutContext(Qt::WidgetWithChildrenShortcut); return outputAction; } } // namespace Internal } // namespace ProjectExplorer