/**************************************************************************** ** ** 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 "qmlprofilersettings.h" #include "qmlprofilerconstants.h" #include "qmlprofilerplugin.h" #include #include #include #include using namespace Utils; namespace QmlProfiler { namespace Internal { static QWidget *createQmlConfigWidget(QmlProfilerSettings *settings) { QmlProfilerSettings &s = *settings; using namespace Layouting; return Form { s.flushEnabled, s.flushInterval, s.aggregateTraces }.emerge(); } QmlProfilerSettings::QmlProfilerSettings() { setConfigWidgetCreator([this] { return createQmlConfigWidget(this); }); setSettingsGroup(Constants::ANALYZER); registerAspect(&flushEnabled); flushEnabled.setSettingsKey("Analyzer.QmlProfiler.FlushEnabled"); flushEnabled.setLabelPlacement(BoolAspect::LabelPlacement::InExtraLabel); flushEnabled.setLabelText(tr("Flush data while profiling:")); flushEnabled.setToolTip(tr( "Periodically flush pending data to the profiler. This reduces the delay when loading the\n" "data and the memory usage in the application. It distorts the profile as the flushing\n" "itself takes time.")); registerAspect(&flushInterval); flushInterval.setSettingsKey("Analyzer.QmlProfiler.FlushInterval"); flushInterval.setRange(1, 10000000); flushInterval.setDefaultValue(1000); flushInterval.setLabelText(tr("Flush interval (ms):")); flushInterval.setEnabler(&flushEnabled); registerAspect(&lastTraceFile); lastTraceFile.setSettingsKey("Analyzer.QmlProfiler.LastTraceFile"); registerAspect(&aggregateTraces); aggregateTraces.setSettingsKey("Analyzer.QmlProfiler.AggregateTraces"); aggregateTraces.setLabelPlacement(BoolAspect::LabelPlacement::InExtraLabel); aggregateTraces.setLabelText(tr("Process data only when process ends:")); aggregateTraces.setToolTip(tr( "Only process data when the process being profiled ends, not when the current recording\n" "session ends. This way multiple recording sessions can be aggregated in a single trace,\n" "for example if multiple QML engines start and stop sequentially during a single run of\n" "the program.")); // Read stored values readSettings(Core::ICore::settings()); } void QmlProfilerSettings::writeGlobalSettings() const { writeSettings(Core::ICore::settings()); } // QmlProfilerOptionsPage QmlProfilerOptionsPage::QmlProfilerOptionsPage() { setId(Constants::SETTINGS); setDisplayName(QmlProfilerSettings::tr("QML Profiler")); setCategory("T.Analyzer"); setDisplayCategory(QmlProfilerSettings::tr("Analyzer")); setCategoryIconPath(Analyzer::Icons::SETTINGSCATEGORY_ANALYZER); } QWidget *QmlProfilerOptionsPage::widget() { // We cannot parent the widget to the options page as it expects a QWidget as parent if (!m_widget) m_widget = createQmlConfigWidget(QmlProfilerPlugin::globalSettings()); return m_widget; } void QmlProfilerOptionsPage::apply() { QmlProfilerPlugin::globalSettings()->writeGlobalSettings(); } void QmlProfilerOptionsPage::finish() { delete m_widget; } } // Internal } // QmlProfiler