Files
qt-creator/src/plugins/valgrind/valgrindconfigwidget.cpp
hjk 14257a24f9 Utils: Introduce Layouting::{br,st}
... as "standard" ways to define line breaks and simple stretch.

There have already been too many patterns to do it.

Break() and Stretch() still work for the patches in flight, but
they are planned to be removed.

Change-Id: I9b70dcdc11244a904a496b0c55938dfb0b265fc8
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
2022-07-25 09:52:15 +00:00

128 lines
3.7 KiB
C++

/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Author: Milian Wolff, KDAB (milian.wolff@kdab.com)
** 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 "valgrindconfigwidget.h"
#include "valgrindsettings.h"
#include "valgrindtr.h"
#include <debugger/analyzer/analyzericons.h>
#include <coreplugin/icore.h>
#include <utils/algorithm.h>
#include <utils/layoutbuilder.h>
#include <utils/qtcassert.h>
using namespace Utils;
namespace Valgrind {
namespace Internal {
class ValgrindConfigWidget : public Core::IOptionsPageWidget
{
public:
explicit ValgrindConfigWidget(ValgrindBaseSettings *settings);
void apply() final
{
ValgrindGlobalSettings::instance()->apply();
ValgrindGlobalSettings::instance()->writeSettings();
}
void finish() final
{
ValgrindGlobalSettings::instance()->finish();
}
};
ValgrindConfigWidget::ValgrindConfigWidget(ValgrindBaseSettings *settings)
{
using namespace Layouting;
ValgrindBaseSettings &s = *settings;
Grid generic {
s.valgrindExecutable, br,
s.valgrindArguments, br,
s.selfModifyingCodeDetection, br
};
Grid memcheck {
s.memcheckArguments, br,
s.trackOrigins, br,
s.showReachable, br,
s.leakCheckOnFinish, br,
s.numCallers, br,
s.filterExternalIssues, br,
s.suppressions
};
Grid callgrind {
s.callgrindArguments, br,
s.kcachegrindExecutable, br,
s.minimumInclusiveCostRatio, br,
s.visualizationMinimumInclusiveCostRatio, br,
s.enableEventToolTips, br,
Span {
2,
Group {
Column {
s.enableCacheSim,
s.enableBranchSim,
s.collectSystime,
s.collectBusEvents,
}
}
}
};
Column {
Group { Title(Tr::tr("Valgrind Generic Settings")), generic },
Group { Title(Tr::tr("MemCheck Memory Analysis Options")), memcheck },
Group { Title(Tr::tr("CallGrind Profiling Options")), callgrind },
st,
}.attachTo(this);
}
// ValgrindOptionsPage
ValgrindOptionsPage::ValgrindOptionsPage()
{
setId(ANALYZER_VALGRIND_SETTINGS);
setDisplayName(Tr::tr("Valgrind"));
setCategory("T.Analyzer");
setDisplayCategory(Tr::tr("Analyzer"));
setCategoryIconPath(Analyzer::Icons::SETTINGSCATEGORY_ANALYZER);
setWidgetCreator([] { return new ValgrindConfigWidget(ValgrindGlobalSettings::instance()); });
}
QWidget *ValgrindOptionsPage::createSettingsWidget(ValgrindBaseSettings *settings)
{
return new ValgrindConfigWidget(settings);
}
} // namespace Internal
} // namespace Valgrind