/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** ** 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 "memcheckerrorview.h" #include "suppressiondialog.h" #include "valgrindsettings.h" #include "xmlprotocol/error.h" #include "xmlprotocol/errorlistmodel.h" #include "xmlprotocol/frame.h" #include "xmlprotocol/stack.h" #include "xmlprotocol/modelhelpers.h" #include "xmlprotocol/suppression.h" #include #include #include #include #include #include using namespace Valgrind::XmlProtocol; namespace Valgrind { namespace Internal { MemcheckErrorView::MemcheckErrorView(QWidget *parent) : Analyzer::DetailedErrorView(parent), m_settings(0) { m_suppressAction = new QAction(this); m_suppressAction->setText(tr("Suppress Error")); m_suppressAction->setIcon(QIcon(QLatin1String(":/valgrind/images/eye_crossed.png"))); m_suppressAction->setShortcut(QKeySequence(Qt::Key_Delete)); m_suppressAction->setShortcutContext(Qt::WidgetWithChildrenShortcut); connect(m_suppressAction, &QAction::triggered, this, &MemcheckErrorView::suppressError); addAction(m_suppressAction); } MemcheckErrorView::~MemcheckErrorView() { } void MemcheckErrorView::setDefaultSuppressionFile(const QString &suppFile) { m_defaultSuppFile = suppFile; } QString MemcheckErrorView::defaultSuppressionFile() const { return m_defaultSuppFile; } // slot, can (for now) be invoked either when the settings were modified *or* when the active // settings object has changed. void MemcheckErrorView::settingsChanged(ValgrindBaseSettings *settings) { QTC_ASSERT(settings, return); m_settings = settings; } void MemcheckErrorView::suppressError() { SuppressionDialog::maybeShow(this); } QList MemcheckErrorView::customActions() const { QList actions; const QModelIndexList indizes = selectionModel()->selectedRows(); QTC_ASSERT(!indizes.isEmpty(), return actions); bool hasErrors = false; foreach (const QModelIndex &index, indizes) { Error error = model()->data(index, ErrorListModel::ErrorRole).value(); if (!error.suppression().isNull()) { hasErrors = true; break; } } m_suppressAction->setEnabled(hasErrors); actions << m_suppressAction; return actions; } } // namespace Internal } // namespace Valgrind