-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiplugin.h
64 lines (46 loc) · 1.59 KB
/
iplugin.h
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
// 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 "extensionsystem_global.h"
#include <QObject>
#include <functional>
namespace ExtensionSystem {
namespace Internal {
class IPluginPrivate;
}
using TestCreator = std::function<QObject *()>;
class EXTENSIONSYSTEM_EXPORT IPlugin : public QObject
{
Q_OBJECT
public:
enum ShutdownFlag { SynchronousShutdown, AsynchronousShutdown };
IPlugin();
~IPlugin() override;
virtual auto initialize(const QStringList &arguments, QString *errorString) -> bool;
virtual void extensionsInitialized() {}
virtual auto delayedInitialize() -> bool { return false; }
virtual auto aboutToShutdown() -> ShutdownFlag { return SynchronousShutdown; }
virtual auto remoteCommand(const QStringList & /* options */,
const QString & /* workingDirectory */,
const QStringList & /* arguments */) -> QObject *
{
return nullptr;
}
// Deprecated in 10.0, use addTest()
[[nodiscard]] virtual auto createTestObjects() const -> QVector<QObject *>;
protected:
virtual void initialize() {}
template<typename Test, typename... Args>
void addTest(Args &&...args)
{
addTestCreator([args...] { return new Test(args...); });
}
void addTestCreator(const TestCreator &creator);
signals:
void asynchronousShutdownFinished();
protected:
void addObject(QObject *obj);
private:
Internal::IPluginPrivate *d;
};
} // namespace ExtensionSystem