aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler/perftracepointdialog.h
blob: 6cbefaf60d627dc47d5cd320d9ac1ccbdbebac50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// 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

#pragma once

#include <projectexplorer/devicesupport/idevicefwd.h>

#include <QDialog>
#include <QProcess>

namespace Utils { class QtcProcess; }

namespace PerfProfiler {
namespace Internal {

namespace Ui { class PerfTracePointDialog; }

class PerfTracePointDialog : public QDialog
{
    Q_OBJECT

public:
    PerfTracePointDialog();
    ~PerfTracePointDialog();

private:
    void runScript();
    void handleProcessDone();
    void finish();

    Ui::PerfTracePointDialog *m_ui;
    ProjectExplorer::IDeviceConstPtr m_device;
    std::unique_ptr<Utils::QtcProcess> m_process;

    void accept() final;
    void reject() final;
};

} // namespace Internal
} // namespace PerfProfiler