This repository has been archived by the owner on Aug 18, 2021. It is now read-only.
generated from Qv2ray/QvPlugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 95
/
SSRPlugin.hpp
51 lines (47 loc) · 1.51 KB
/
SSRPlugin.hpp
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
#pragma once
#include "QvPluginInterface.hpp"
#include "core/EventHandler.hpp"
#include "core/Serializer.hpp"
#include "core/kernel/SSRInstance.hpp"
#include <QObject>
#include <QtPlugin>
class QLabel;
using namespace Qv2rayPlugin;
namespace SSRPlugin
{
class QvSSRPlugin
: public QObject
, Qv2rayInterface
{
Q_INTERFACES(Qv2rayPlugin::Qv2rayInterface)
Q_PLUGIN_METADATA(IID Qv2rayInterface_IID)
Q_OBJECT
public:
//
// Basic metainfo of this plugin
const QvPluginMetadata GetMetadata() const override
{
return QvPluginMetadata{
"SSR Plugin", //
"Qv2ray Development Group", //
"qvplugin_ssr", //
"Support SSR connections in Qv2ray.", //
"v3.0.0", //
"Qv2ray/QvPlugin-SSR", //
{
COMPONENT_GUI, //
COMPONENT_KERNEL, //
COMPONENT_OUTBOUND_HANDLER //
},
UPDATE_GITHUB_RELEASE //
};
}
bool InitializePlugin(const QString &, const QJsonObject &) override;
//
signals:
void PluginLog(const QString &) const override;
void PluginErrorMessageBox(const QString &, const QString &) const override;
private:
QJsonObject settings;
};
} // namespace SSRPlugin