blob: d5affdcc7cb23deb533f3a3709c664b87322ea74 (
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
41
42
43
44
45
46
47
48
49
50
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/devicesupport/idevicefwd.h>
#include <QDialog>
#include <QProcess>
QT_BEGIN_NAMESPACE
class QComboBox;
class QDialogButtonBox;
class QLabel;
class QTextEdit;
QT_END_NAMESPACE
namespace Utils { class Process; }
namespace PerfProfiler {
namespace Internal {
namespace Ui { class PerfTracePointDialog; }
class PerfTracePointDialog : public QDialog
{
Q_OBJECT
public:
PerfTracePointDialog();
~PerfTracePointDialog();
private:
void runScript();
void handleProcessDone();
void finish();
QLabel *m_label;
QTextEdit *m_textEdit;
QComboBox *m_privilegesChooser;
QDialogButtonBox *m_buttonBox;
ProjectExplorer::IDeviceConstPtr m_device;
std::unique_ptr<Utils::Process> m_process;
void accept() final;
void reject() final;
};
} // namespace Internal
} // namespace PerfProfiler
|