forked from qt-creator/qt-creator
Change-Id: Ia0823fe1dbadb7c68efc431c3bf0f1ba621a9484 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io>
124 lines
3.6 KiB
C++
124 lines
3.6 KiB
C++
// Copyright (C) 2018 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 "perfloaddialog.h"
|
|
#include "perfprofilerconstants.h"
|
|
#include "perfprofilertr.h"
|
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
#include <projectexplorer/kit.h>
|
|
#include <projectexplorer/kitchooser.h>
|
|
#include <projectexplorer/project.h>
|
|
#include <projectexplorer/session.h>
|
|
#include <projectexplorer/target.h>
|
|
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
#include <QDialogButtonBox>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
|
|
using namespace Utils;
|
|
|
|
namespace PerfProfiler {
|
|
namespace Internal {
|
|
|
|
PerfLoadDialog::PerfLoadDialog(QWidget *parent)
|
|
: QDialog(parent)
|
|
{
|
|
setWindowTitle(Tr::tr("Load Perf Trace"));
|
|
resize(710, 164);
|
|
|
|
auto label1 = new QLabel(Tr::tr("&Trace file:"));
|
|
m_traceFileLineEdit = new QLineEdit(this);
|
|
label1->setBuddy(m_traceFileLineEdit);
|
|
auto browseTraceFileButton = new QPushButton(Tr::tr("&Browse..."));
|
|
|
|
auto label2 = new QLabel(Tr::tr("Directory of &executable:"));
|
|
m_executableDirLineEdit = new QLineEdit(this);
|
|
label2->setBuddy(m_executableDirLineEdit);
|
|
auto browseExecutableDirButton = new QPushButton(Tr::tr("B&rowse..."));
|
|
|
|
auto label3 = new QLabel(Tr::tr("Kit:"));
|
|
m_kitChooser = new ProjectExplorer::KitChooser(this);
|
|
m_kitChooser->populate();
|
|
|
|
auto buttonBox = new QDialogButtonBox(this);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
|
|
|
using namespace Layouting;
|
|
|
|
Column {
|
|
Grid {
|
|
label1, m_traceFileLineEdit, browseTraceFileButton, br,
|
|
label2, m_executableDirLineEdit, browseExecutableDirButton, br,
|
|
label3, Span(2, m_kitChooser)
|
|
},
|
|
st,
|
|
hr,
|
|
buttonBox
|
|
}.attachTo(this);
|
|
|
|
connect(buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept);
|
|
connect(buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
connect(browseExecutableDirButton, &QPushButton::pressed,
|
|
this, &PerfLoadDialog::on_browseExecutableDirButton_pressed);
|
|
connect(browseTraceFileButton, &QPushButton::pressed,
|
|
this, &PerfLoadDialog::on_browseTraceFileButton_pressed);
|
|
chooseDefaults();
|
|
}
|
|
|
|
PerfLoadDialog::~PerfLoadDialog() = default;
|
|
|
|
QString PerfLoadDialog::traceFilePath() const
|
|
{
|
|
return m_traceFileLineEdit->text();
|
|
}
|
|
|
|
QString PerfLoadDialog::executableDirPath() const
|
|
{
|
|
return m_executableDirLineEdit->text();
|
|
}
|
|
|
|
ProjectExplorer::Kit *PerfLoadDialog::kit() const
|
|
{
|
|
return m_kitChooser->currentKit();
|
|
}
|
|
|
|
void PerfLoadDialog::on_browseTraceFileButton_pressed()
|
|
{
|
|
FilePath filePath = FileUtils::getOpenFilePath(
|
|
this, Tr::tr("Choose Perf Trace"), {},
|
|
Tr::tr("Perf traces (*%1)").arg(Constants::TraceFileExtension));
|
|
if (filePath.isEmpty())
|
|
return;
|
|
|
|
m_traceFileLineEdit->setText(filePath.toUserOutput());
|
|
}
|
|
|
|
void PerfLoadDialog::on_browseExecutableDirButton_pressed()
|
|
{
|
|
FilePath filePath = FileUtils::getExistingDirectory(
|
|
this, Tr::tr("Choose Directory of Executable"));
|
|
if (filePath.isEmpty())
|
|
return;
|
|
|
|
m_executableDirLineEdit->setText(filePath.toUserOutput());
|
|
}
|
|
|
|
void PerfLoadDialog::chooseDefaults()
|
|
{
|
|
ProjectExplorer::Target *target = ProjectExplorer::SessionManager::startupTarget();
|
|
if (!target)
|
|
return;
|
|
|
|
m_kitChooser->setCurrentKitId(target->kit()->id());
|
|
|
|
if (auto *bc = target->activeBuildConfiguration())
|
|
m_executableDirLineEdit->setText(bc->buildDirectory().toString());
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace PerfProfiler
|