blob: c5acb6dcb7cb441c9e020c031ffbb152b2201d26 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// Copyright (C) 2016 Petar Perisin <petar.perisin@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QDialog>
#include <QSet>
#include <QTimer>
#include <utils/processinfo.h>
QT_BEGIN_NAMESPACE
class QLabel;
class QCheckBox;
QT_END_NAMESPACE
namespace ProjectExplorer {
class KitChooser;
class Kit;
}
namespace Utils { class PathChooser; }
namespace Debugger::Internal {
class UnstartedAppWatcherDialog : public QDialog
{
Q_OBJECT
public:
explicit UnstartedAppWatcherDialog(QWidget *parent = nullptr);
ProjectExplorer::Kit *currentKit() const;
Utils::ProcessInfo currentProcess() const;
bool hideOnAttach() const;
bool continueOnAttach() const;
void startWatching();
bool event(QEvent *) override;
signals:
void processFound();
private:
void selectExecutable();
void pidFound(const Utils::ProcessInfo &p);
void startStopWatching(bool start);
void findProcess();
void stopAndCheckExecutable();
void kitChanged();
enum UnstartedAppWacherState
{
InvalidWacherState,
NotWatchingState,
WatchingState,
FoundState
};
void startStopTimer(bool start);
bool checkExecutableString() const;
void setWaitingState(UnstartedAppWacherState state);
ProjectExplorer::KitChooser *m_kitChooser;
Utils::PathChooser *m_pathChooser;
QLabel *m_waitingLabel;
QCheckBox *m_hideOnAttachCheckBox;
QCheckBox *m_continueOnAttachCheckBox;
QPushButton *m_watchingPushButton;
Utils::ProcessInfo m_process;
QSet<int> m_excluded;
QTimer m_timer;
};
} // Debugger::Internal
|