From 8cb6f64820b4bf39c64803db21a58e135465ff4f Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 13 Apr 2020 21:34:47 +0300 Subject: Move smolbote headers to include/smolbote Headers will be installed to include/smolbote/ --- include/smolbote/plugininterface.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 include/smolbote/plugininterface.h (limited to 'include/smolbote/plugininterface.h') diff --git a/include/smolbote/plugininterface.h b/include/smolbote/plugininterface.h new file mode 100644 index 0000000..4c36d8a --- /dev/null +++ b/include/smolbote/plugininterface.h @@ -0,0 +1,29 @@ +/* + * This file is part of smolbote. It's copyrighted by the contributors recorded + * in the version control history of the file, available from its original + * location: https://library.iserlohn-fortress.net/aqua/smolbote.git + * + * SPDX-License-Identifier: MIT + */ + +#pragma once + +#include +#include +#include +#include +#include + +typedef QHash> CommandHash_t; + +class QDialog; +class PluginInterface +{ +public: + virtual ~PluginInterface() = default; + virtual CommandHash_t commands() = 0; + virtual QDialog *createWidget(QWidget *parent = nullptr) const = 0; +}; + +#define PluginInterfaceIid "net.iserlohn-fortress.smolbote.PluginInterface" +Q_DECLARE_INTERFACE(PluginInterface, PluginInterfaceIid) -- cgit v1.2.1