blob: 81ecd852cd35356461c1aed3de9856e0fada69b0 (
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
|
// 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>
QT_BEGIN_NAMESPACE
class QComboBox;
class QDialogButtonBox;
class QLabel;
class QTextEdit;
QT_END_NAMESPACE
namespace Utils { class Process; }
namespace PerfProfiler::Internal {
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 PerfProfiler::Internal
|