blob: a30225592eb46d157652b3d206e64a647fc56543 (
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) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QObject>
namespace QmlProfiler {
class QmlProfilerStateManager : public QObject
{
Q_OBJECT
public:
enum QmlProfilerState {
Idle,
AppRunning,
AppStopRequested,
AppDying,
};
explicit QmlProfilerStateManager(QObject *parent = nullptr);
~QmlProfilerStateManager() override;
QmlProfilerState currentState();
bool clientRecording();
bool serverRecording();
quint64 requestedFeatures() const;
quint64 recordedFeatures() const;
QString currentStateAsString();
void setCurrentState(QmlProfilerState newState);
void setClientRecording(bool recording);
void setServerRecording(bool recording);
void setRequestedFeatures(quint64 features);
void setRecordedFeatures(quint64 features);
signals:
void stateChanged();
void clientRecordingChanged(bool);
void serverRecordingChanged(bool);
void requestedFeaturesChanged(quint64);
void recordedFeaturesChanged(quint64);
private:
class QmlProfilerStateManagerPrivate;
QmlProfilerStateManagerPrivate *d;
};
} // namespace QmlProfiler
|